| Index: content/shell/browser/shell_browser_main_parts.cc
|
| diff --git a/content/shell/browser/shell_browser_main_parts.cc b/content/shell/browser/shell_browser_main_parts.cc
|
| index 9b17cd58040a09ad74ba1528ea318e995e140ca1..1c5dcb56cf38b629311ca6c164f74ca87839f2b7 100644
|
| --- a/content/shell/browser/shell_browser_main_parts.cc
|
| +++ b/content/shell/browser/shell_browser_main_parts.cc
|
| @@ -146,8 +146,8 @@ void ShellBrowserMainParts::InitializeMessageLoopContext() {
|
| gfx::Size());
|
| }
|
|
|
| -void ShellBrowserMainParts::PreMainMessageLoopRun() {
|
| #if defined(OS_ANDROID)
|
| +int ShellBrowserMainParts::PreCreateThreads() {
|
| if (base::CommandLine::ForCurrentProcess()->HasSwitch(
|
| switches::kEnableCrashReporter)) {
|
| base::FilePath crash_dumps_dir =
|
| @@ -155,8 +155,12 @@ void ShellBrowserMainParts::PreMainMessageLoopRun() {
|
| switches::kCrashDumpsDir);
|
| crash_dump_manager_.reset(new breakpad::CrashDumpManager(crash_dumps_dir));
|
| }
|
| +
|
| + return 0;
|
| +}
|
| #endif
|
|
|
| +void ShellBrowserMainParts::PreMainMessageLoopRun() {
|
| net_log_.reset(new ShellNetLog("content_shell"));
|
| InitializeBrowserContexts();
|
| Shell::Initialize();
|
|
|