| Index: content/shell/browser/shell_browser_main.h
|
| diff --git a/content/shell/browser/shell_browser_main.h b/content/shell/browser/shell_browser_main.h
|
| index d361fa3e4de6634c7200470d72949bbd3a4714af..1d350d4491daa391bcd3a77f1fc26fc97ebbbb94 100644
|
| --- a/content/shell/browser/shell_browser_main.h
|
| +++ b/content/shell/browser/shell_browser_main.h
|
| @@ -5,7 +5,7 @@
|
| #ifndef CONTENT_SHELL_BROWSER_SHELL_BROWSER_MAIN_H_
|
| #define CONTENT_SHELL_BROWSER_SHELL_BROWSER_MAIN_H_
|
|
|
| -#include "base/memory/scoped_ptr.h"
|
| +#include <memory>
|
|
|
| namespace content {
|
| class BrowserMainRunner;
|
| @@ -14,6 +14,6 @@ struct MainFunctionParams;
|
|
|
| int ShellBrowserMain(
|
| const content::MainFunctionParams& parameters,
|
| - const scoped_ptr<content::BrowserMainRunner>& main_runner);
|
| + const std::unique_ptr<content::BrowserMainRunner>& main_runner);
|
|
|
| #endif // CONTENT_SHELL_BROWSER_SHELL_BROWSER_MAIN_H_
|
|
|