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

Unified Diff: content/utility/utility_main.cc

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/utility/utility_blink_platform_impl.h ('k') | content/utility/utility_thread_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/utility/utility_main.cc
diff --git a/content/utility/utility_main.cc b/content/utility/utility_main.cc
index e5fefcf36b2564f5c074f1aaaebc6eb3127b123d..81b1c40be2360f9c51651da8ea0908824e791106 100644
--- a/content/utility/utility_main.cc
+++ b/content/utility/utility_main.cc
@@ -37,7 +37,7 @@ int UtilityMain(const MainFunctionParams& parameters) {
LinuxSandbox::InitializeSandbox();
#endif
- scoped_ptr<base::FeatureList> feature_list(new base::FeatureList);
+ std::unique_ptr<base::FeatureList> feature_list(new base::FeatureList);
feature_list->InitializeFromCommandLine(
parameters.command_line.GetSwitchValueASCII(switches::kEnableFeatures),
parameters.command_line.GetSwitchValueASCII(switches::kDisableFeatures));
« no previous file with comments | « content/utility/utility_blink_platform_impl.h ('k') | content/utility/utility_thread_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698