diff options
Diffstat (limited to 'chromium/base/profiler/chrome_unwinder_android.h')
-rw-r--r-- | chromium/base/profiler/chrome_unwinder_android.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/base/profiler/chrome_unwinder_android.h b/chromium/base/profiler/chrome_unwinder_android.h index b8f67894a5e..6894380c022 100644 --- a/chromium/base/profiler/chrome_unwinder_android.h +++ b/chromium/base/profiler/chrome_unwinder_android.h @@ -19,7 +19,7 @@ namespace base { class BASE_EXPORT ChromeUnwinderAndroid : public Unwinder { public: ChromeUnwinderAndroid(const ArmCFITable* cfi_table, - const ModuleCache::Module* chrome_module); + uintptr_t chrome_module_base_address); ~ChromeUnwinderAndroid() override; ChromeUnwinderAndroid(const ChromeUnwinderAndroid&) = delete; ChromeUnwinderAndroid& operator=(const ChromeUnwinderAndroid&) = delete; @@ -43,7 +43,7 @@ class BASE_EXPORT ChromeUnwinderAndroid : public Unwinder { const ArmCFITable::FrameEntry& entry); const ArmCFITable* cfi_table_; - const ModuleCache::Module* const chrome_module_; + const uintptr_t chrome_module_base_address_; }; } // namespace base |