Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6872)

Unified Diff: chromecast/browser/cast_browser_main_parts.h

Issue 2200693002: Refactor CrashDump*Manager to use a shared CrashDumpObserver. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/chrome_content_browser_client.cc ('k') | chromecast/browser/cast_browser_main_parts.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/browser/cast_browser_main_parts.h
diff --git a/chromecast/browser/cast_browser_main_parts.h b/chromecast/browser/cast_browser_main_parts.h
index d60960472b4ea21bd601075112f6ed06c70f17d9..62699a4c9e9eecb5ed344e228c1c4f2dfa95dffc 100644
--- a/chromecast/browser/cast_browser_main_parts.h
+++ b/chromecast/browser/cast_browser_main_parts.h
@@ -17,6 +17,12 @@ class SingleThreadTaskRunner;
class Thread;
} // namespace base
+#if defined(OS_ANDROID)
+namespace breakpad {
+class CrashDumpObserver;
+}
+#endif
+
namespace net {
class NetLog;
}
@@ -82,6 +88,10 @@ class CastBrowserMainParts : public content::BrowserMainParts {
std::unique_ptr<CastMemoryPressureMonitor> memory_pressure_monitor_;
#endif
+#if defined(OS_ANDROID)
+ std::unique_ptr<breakpad::CrashDumpObserver> crash_dump_observer_;
+#endif
+
DISALLOW_COPY_AND_ASSIGN(CastBrowserMainParts);
};
« no previous file with comments | « chrome/browser/chrome_content_browser_client.cc ('k') | chromecast/browser/cast_browser_main_parts.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698