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

Unified Diff: chrome/browser/chrome_browser_main_android.cc

Issue 11884042: Fix for a crasher when starting a renderer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed unneeded header. Created 7 years, 11 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_browser_main_android.cc
diff --git a/chrome/browser/chrome_browser_main_android.cc b/chrome/browser/chrome_browser_main_android.cc
index 0846570df2ef11348d62d61a8cd0f63d0a72ac8a..96de23e122347a9dcdb2b1546246bc98a75724df 100644
--- a/chrome/browser/chrome_browser_main_android.cc
+++ b/chrome/browser/chrome_browser_main_android.cc
@@ -6,6 +6,7 @@
#include "base/path_service.h"
#include "chrome/app/breakpad_linux.h"
+#include "chrome/browser/android/crash_dump_manager.h"
#include "content/public/browser/android/compositor.h"
#include "content/public/common/main_function_params.h"
#include "net/android/network_change_notifier_factory_android.h"
@@ -27,6 +28,8 @@ void ChromeBrowserMainPartsAndroid::PreProfileInit() {
// enabled. Right now if it is disabled we still generate the minidumps but we
// do not upload them.
InitCrashReporter();
+
+ crash_dump_manager_.reset(new CrashDumpManager());
#endif
ChromeBrowserMainParts::PreProfileInit();

Powered by Google App Engine
This is Rietveld 408576698