| 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 5bccdd56079be77b6ce3aa1e235936c0804a7270..0c8a903c1ead39699c2be1715d254fed8a8a7643 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/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"
|
| @@ -47,7 +47,7 @@ void ChromeBrowserMainPartsAndroid::PreProfileInit() {
|
| 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();
|
|
|