1234567891011121314151617181920 |
- #ifndef BASE_PROFILER_NATIVE_UNWINDER_H_
- #define BASE_PROFILER_NATIVE_UNWINDER_H_
- #include <memory>
- namespace base {
- class ModuleCache;
- class Unwinder;
- std::unique_ptr<Unwinder> CreateNativeUnwinder(ModuleCache* module_cache);
- }
- #endif
|