1234567891011121314151617181920212223242526272829 |
- #ifndef BASE_PROFILER_FRAME_H_
- #define BASE_PROFILER_FRAME_H_
- #include <memory>
- #include "base/profiler/module_cache.h"
- namespace base {
- struct BASE_EXPORT Frame {
- Frame(uintptr_t instruction_pointer, const ModuleCache::Module* module);
- ~Frame();
-
- uintptr_t instruction_pointer;
-
- const ModuleCache::Module* module;
- };
- }
- #endif
|