| Index: content/shell/browser/shell_browser_main.cc
|
| diff --git a/content/shell/browser/shell_browser_main.cc b/content/shell/browser/shell_browser_main.cc
|
| index 3089e40ec3ab4137833b540ea6dad78e279e293c..676cde52e102a54258140a0060f85cbdf078c7a0 100644
|
| --- a/content/shell/browser/shell_browser_main.cc
|
| +++ b/content/shell/browser/shell_browser_main.cc
|
| @@ -5,9 +5,9 @@
|
| #include "content/shell/browser/shell_browser_main.h"
|
|
|
| #include <iostream>
|
| +#include <memory>
|
|
|
| #include "base/logging.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/message_loop/message_loop.h"
|
| #include "build/build_config.h"
|
| #include "content/public/browser/browser_main_runner.h"
|
| @@ -19,7 +19,7 @@
|
| // Main routine for running as the Browser process.
|
| int ShellBrowserMain(
|
| const content::MainFunctionParams& parameters,
|
| - const scoped_ptr<content::BrowserMainRunner>& main_runner) {
|
| + const std::unique_ptr<content::BrowserMainRunner>& main_runner) {
|
| int exit_code = main_runner->Initialize(parameters);
|
| DCHECK_LT(exit_code, 0)
|
| << "BrowserMainRunner::Initialize failed in ShellBrowserMain";
|
|
|