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

Unified Diff: chrome/browser/chrome_content_browser_client.h

Issue 11189068: Changing minidump process generation to be in-process on Android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Improved patch description. Created 8 years, 2 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
Index: chrome/browser/chrome_content_browser_client.h
diff --git a/chrome/browser/chrome_content_browser_client.h b/chrome/browser/chrome_content_browser_client.h
index 3c042c91fe7180618a58892c2c271699c9bd28d5..87e2315f989c180bd7dd096be1cb26c9df082fdf 100644
--- a/chrome/browser/chrome_content_browser_client.h
+++ b/chrome/browser/chrome_content_browser_client.h
@@ -23,6 +23,11 @@ class Extension;
class PrefService;
+#if defined(OS_ANDROID)
Lei Zhang 2012/10/19 23:22:34 nit: this goes above the forward declarations.
Jay Civelli 2012/10/22 22:09:48 Done.
+#include "base/memory/scoped_ptr.h"
+#include "chrome/browser/android/crash_dump_manager.h"
+#endif
+
namespace chrome {
class ChromeContentBrowserClient : public content::ContentBrowserClient {
@@ -233,6 +238,12 @@ class ChromeContentBrowserClient : public content::ContentBrowserClient {
content::BrowserContext* browser_context,
const extensions::Extension* extension);
+#if defined(OS_ANDROID)
+ void InitCrashDumpManager();
+
+ scoped_ptr<CrashDumpManager> crash_dump_manager_;
Lei Zhang 2012/10/19 23:22:34 jam: is this the right place to put this?
+#endif
+
// Set of origins that can use TCP/UDP private APIs from NaCl.
std::set<std::string> allowed_socket_origins_;

Powered by Google App Engine
This is Rietveld 408576698