| OLD | NEW |
| 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 Loading... |
| 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_ |
| OLD | NEW |