| Index: content/browser/browser_main.cc
|
| diff --git a/content/browser/browser_main.cc b/content/browser/browser_main.cc
|
| index 459bde05a4d3c8411e55f88db2b87f7160ea1686..772010cf709ea1870d6e469fe6987e40d485cdd6 100644
|
| --- a/content/browser/browser_main.cc
|
| +++ b/content/browser/browser_main.cc
|
| @@ -4,7 +4,8 @@
|
|
|
| #include "content/browser/browser_main.h"
|
|
|
| -#include "base/memory/scoped_ptr.h"
|
| +#include <memory>
|
| +
|
| #include "base/trace_event/trace_event.h"
|
| #include "content/common/content_constants_internal.h"
|
| #include "content/public/browser/browser_main_runner.h"
|
| @@ -36,7 +37,7 @@ int BrowserMain(const MainFunctionParams& parameters) {
|
| base::trace_event::TraceLog::GetInstance()->SetProcessSortIndex(
|
| kTraceEventBrowserProcessSortIndex);
|
|
|
| - scoped_ptr<BrowserMainRunner> main_runner(BrowserMainRunner::Create());
|
| + std::unique_ptr<BrowserMainRunner> main_runner(BrowserMainRunner::Create());
|
|
|
| int exit_code = main_runner->Initialize(parameters);
|
| if (exit_code >= 0)
|
|
|