Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2378)

Unified Diff: content/shell/browser/shell_browser_main.h

Issue 1874903002: Convert //content from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix indent Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/shell/browser/shell_browser_context.cc ('k') | content/shell/browser/shell_browser_main.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_
« no previous file with comments | « content/shell/browser/shell_browser_context.cc ('k') | content/shell/browser/shell_browser_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698