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

Unified Diff: content/browser/appcache/appcache_dispatcher_host.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
Index: content/browser/appcache/appcache_dispatcher_host.h
diff --git a/content/browser/appcache/appcache_dispatcher_host.h b/content/browser/appcache/appcache_dispatcher_host.h
index 4181b4398eb43817901140acb7fb6371869998d3..9b882c8a97e706e4bf6723e15ff1b5dd35dae5b6 100644
--- a/content/browser/appcache/appcache_dispatcher_host.h
+++ b/content/browser/appcache/appcache_dispatcher_host.h
@@ -7,11 +7,11 @@
#include <stdint.h>
+#include <memory>
#include <vector>
#include "base/macros.h"
#include "base/memory/ref_counted.h"
-#include "base/memory/scoped_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/process/process.h"
#include "content/browser/appcache/appcache_backend_impl.h"
@@ -70,7 +70,7 @@ class AppCacheDispatcherHost : public BrowserMessageFilter {
content::GetStatusCallback get_status_callback_;
content::StartUpdateCallback start_update_callback_;
content::SwapCacheCallback swap_cache_callback_;
- scoped_ptr<IPC::Message> pending_reply_msg_;
+ std::unique_ptr<IPC::Message> pending_reply_msg_;
// The corresponding ChildProcessHost object's id().
int process_id_;
« no previous file with comments | « content/browser/appcache/appcache_disk_cache_unittest.cc ('k') | content/browser/appcache/appcache_executable_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698