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_; |