summaryrefslogtreecommitdiffstats
path: root/chrome/browser/chrome_browser_main_android.cc
diff options
context:
space:
mode:
authorjochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-10-22 00:11:03 +0000
committerjochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-10-22 00:11:03 +0000
commit0b818f7b22ef210976d00055575255d9801969ee (patch)
treee9c78bd80e97d03cd6d2fde83044c521170238b0 /chrome/browser/chrome_browser_main_android.cc
parent774a58c3ad4fb5f93bae4ed761cddf1b90365ff3 (diff)
downloadchromium_src-0b818f7b22ef210976d00055575255d9801969ee.zip
chromium_src-0b818f7b22ef210976d00055575255d9801969ee.tar.gz
chromium_src-0b818f7b22ef210976d00055575255d9801969ee.tar.bz2
Move Linux/Android breakpad implementation to breakpad component
Also split up breakpad component in more subdirectories and tighten up DEPS rules BUG=247431 R=rsesek@chromium.org TBR=darin@chromium.org Review URL: https://codereview.chromium.org/31243002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@229964 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chrome_browser_main_android.cc')
-rw-r--r--chrome/browser/chrome_browser_main_android.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/chrome_browser_main_android.cc b/chrome/browser/chrome_browser_main_android.cc
index 5bccdd5..0acfb7e 100644
--- a/chrome/browser/chrome_browser_main_android.cc
+++ b/chrome/browser/chrome_browser_main_android.cc
@@ -8,10 +8,10 @@
#include "base/debug/trace_event.h"
#include "base/path_service.h"
#include "cc/base/switches.h"
-#include "chrome/app/breakpad_linux.h"
-#include "chrome/browser/android/crash_dump_manager.h"
#include "chrome/common/chrome_paths.h"
#include "chrome/common/chrome_switches.h"
+#include "components/breakpad/app/breakpad_linux.h"
+#include "components/breakpad/browser/crash_dump_manager_android.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"
@@ -44,10 +44,10 @@ void ChromeBrowserMainPartsAndroid::PreProfileInit() {
switches::kEnableCrashReporterForTesting);
if (breakpad_enabled) {
- InitCrashReporter();
+ breakpad::InitCrashReporter();
base::FilePath crash_dump_dir;
PathService::Get(chrome::DIR_CRASH_DUMPS, &crash_dump_dir);
- crash_dump_manager_.reset(new CrashDumpManager(crash_dump_dir));
+ crash_dump_manager_.reset(new breakpad::CrashDumpManager(crash_dump_dir));
}
ChromeBrowserMainParts::PreProfileInit();