| Index: content/shell/shell_browser_main.cc
|
| diff --git a/content/shell/shell_browser_main.cc b/content/shell/shell_browser_main.cc
|
| index d4d65a33d6cc1348ecc3bc49b418dc9ea7cf9de9..d5a3504c4968c40c3727ed494bcc65ea1e364230 100644
|
| --- a/content/shell/shell_browser_main.cc
|
| +++ b/content/shell/shell_browser_main.cc
|
| @@ -127,8 +127,11 @@ int ShellBrowserMain(
|
| content::EnsureInitializeForAndroidLayoutTests();
|
| #endif
|
| }
|
| + scoped_refptr<content::StartupTaskRunner> startup_task_runner =
|
| + make_scoped_refptr(new content::StartupTaskRunner(
|
| + content::StartupTaskRunner::IMMEDIATE, NULL));
|
|
|
| - int exit_code = main_runner->Initialize(parameters);
|
| + int exit_code = main_runner->Initialize(parameters, startup_task_runner);
|
| DCHECK_LT(exit_code, 0)
|
| << "BrowserMainRunner::Initialize failed in ShellBrowserMain";
|
|
|
|
|