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

Side by Side 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_APPCACHE_APPCACHE_BACKEND_IMPL_H_ 5 #ifndef CONTENT_BROWSER_APPCACHE_APPCACHE_BACKEND_IMPL_H_
6 #define CONTENT_BROWSER_APPCACHE_APPCACHE_BACKEND_IMPL_H_ 6 #define CONTENT_BROWSER_APPCACHE_APPCACHE_BACKEND_IMPL_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include "base/containers/hash_tables.h" 10 #include "base/containers/hash_tables.h"
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 HostMap::iterator it = hosts_.find(host_id); 56 HostMap::iterator it = hosts_.find(host_id);
57 return (it != hosts_.end()) ? (it->second) : NULL; 57 return (it != hosts_.end()) ? (it->second) : NULL;
58 } 58 }
59 59
60 typedef base::hash_map<int, AppCacheHost*> HostMap; 60 typedef base::hash_map<int, AppCacheHost*> HostMap;
61 const HostMap& hosts() { return hosts_; } 61 const HostMap& hosts() { return hosts_; }
62 62
63 // Methods to support cross site navigations. Hosts are transferred 63 // Methods to support cross site navigations. Hosts are transferred
64 // from process to process accordingly, deparented from the old 64 // from process to process accordingly, deparented from the old
65 // processes backend and reparented to the new. 65 // processes backend and reparented to the new.
66 scoped_ptr<AppCacheHost> TransferHostOut(int host_id); 66 std::unique_ptr<AppCacheHost> TransferHostOut(int host_id);
67 void TransferHostIn(int new_host_id, scoped_ptr<AppCacheHost> host); 67 void TransferHostIn(int new_host_id, std::unique_ptr<AppCacheHost> host);
68 68
69 private: 69 private:
70 AppCacheServiceImpl* service_; 70 AppCacheServiceImpl* service_;
71 AppCacheFrontend* frontend_; 71 AppCacheFrontend* frontend_;
72 int process_id_; 72 int process_id_;
73 HostMap hosts_; 73 HostMap hosts_;
74 }; 74 };
75 75
76 } // namespace 76 } // namespace
77 77
78 #endif // CONTENT_BROWSER_APPCACHE_APPCACHE_BACKEND_IMPL_H_ 78 #endif // CONTENT_BROWSER_APPCACHE_APPCACHE_BACKEND_IMPL_H_
OLDNEW
« 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