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

Unified Diff: content/browser/appcache/appcache_backend_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/appcache/appcache.cc ('k') | content/browser/appcache/appcache_backend_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/appcache/appcache_backend_impl.h
diff --git a/content/browser/appcache/appcache_backend_impl.h b/content/browser/appcache/appcache_backend_impl.h
index b0136b4081ad08e49b509f3ede6b733e9b265654..4585b789038211e31b38e592721bf042f7f0ec3f 100644
--- a/content/browser/appcache/appcache_backend_impl.h
+++ b/content/browser/appcache/appcache_backend_impl.h
@@ -63,8 +63,8 @@ class CONTENT_EXPORT AppCacheBackendImpl {
// Methods to support cross site navigations. Hosts are transferred
// from process to process accordingly, deparented from the old
// processes backend and reparented to the new.
- scoped_ptr<AppCacheHost> TransferHostOut(int host_id);
- void TransferHostIn(int new_host_id, scoped_ptr<AppCacheHost> host);
+ std::unique_ptr<AppCacheHost> TransferHostOut(int host_id);
+ void TransferHostIn(int new_host_id, std::unique_ptr<AppCacheHost> host);
private:
AppCacheServiceImpl* service_;
« no previous file with comments | « content/browser/appcache/appcache.cc ('k') | content/browser/appcache/appcache_backend_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698