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

Unified Diff: content/browser/browser_child_process_host_impl.h

Issue 1874893002: Convert //content/browser from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/browser/bootstrap_sandbox_manager_mac.h ('k') | content/browser/browser_context.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/browser_child_process_host_impl.h
diff --git a/content/browser/browser_child_process_host_impl.h b/content/browser/browser_child_process_host_impl.h
index 4b852e2c08ecd6476c54e3e47a2935af532a27c6..3a798c27bbc93aeaa5d6cd15f2eb02923dcb4729 100644
--- a/content/browser/browser_child_process_host_impl.h
+++ b/content/browser/browser_child_process_host_impl.h
@@ -8,9 +8,9 @@
#include <stdint.h>
#include <list>
+#include <memory>
#include "base/compiler_specific.h"
-#include "base/memory/scoped_ptr.h"
#include "base/process/process.h"
#include "base/synchronization/waitable_event_watcher.h"
#include "build/build_config.h"
@@ -118,9 +118,9 @@ class CONTENT_EXPORT BrowserChildProcessHostImpl
ChildProcessData data_;
BrowserChildProcessHostDelegate* delegate_;
- scoped_ptr<ChildProcessHost> child_process_host_;
+ std::unique_ptr<ChildProcessHost> child_process_host_;
- scoped_ptr<ChildProcessLauncher> child_process_;
+ std::unique_ptr<ChildProcessLauncher> child_process_;
PowerMonitorMessageBroadcaster power_monitor_message_broadcaster_;
« no previous file with comments | « content/browser/bootstrap_sandbox_manager_mac.h ('k') | content/browser/browser_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698