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

Unified Diff: content/app/content_main_runner.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/app/content_main.cc ('k') | content/app/mojo/mojo_init.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/app/content_main_runner.cc
diff --git a/content/app/content_main_runner.cc b/content/app/content_main_runner.cc
index fefb3212bc55cdd3ba2c8747d336ee54770dc5ff..5b4586c38f366b91a4a6e06b68bcaa50f3b7c9a5 100644
--- a/content/app/content_main_runner.cc
+++ b/content/app/content_main_runner.cc
@@ -7,6 +7,8 @@
#include <stddef.h>
#include <stdlib.h>
#include <string.h>
+
+#include <memory>
#include <string>
#include <utility>
@@ -21,7 +23,6 @@
#include "base/lazy_instance.h"
#include "base/logging.h"
#include "base/macros.h"
-#include "base/memory/scoped_ptr.h"
#include "base/memory/scoped_vector.h"
#include "base/metrics/histogram_base.h"
#include "base/metrics/statistics_recorder.h"
@@ -786,11 +787,11 @@ class ContentMainRunnerImpl : public ContentMainRunner {
// The delegate will outlive this object.
ContentMainDelegate* delegate_;
- scoped_ptr<base::AtExitManager> exit_manager_;
+ std::unique_ptr<base::AtExitManager> exit_manager_;
#if defined(OS_WIN)
sandbox::SandboxInterfaceInfo sandbox_info_;
#elif defined(OS_MACOSX)
- scoped_ptr<base::mac::ScopedNSAutoreleasePool> autorelease_pool_;
+ std::unique_ptr<base::mac::ScopedNSAutoreleasePool> autorelease_pool_;
#endif
base::Closure* ui_task_;
« no previous file with comments | « content/app/content_main.cc ('k') | content/app/mojo/mojo_init.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698