OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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_INDEXED_DB_INDEXED_DB_FACTORY_H_ | 5 #ifndef CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_FACTORY_H_ |
6 #define CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_FACTORY_H_ | 6 #define CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_FACTORY_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 | 10 |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 IndexedDBDatabaseMap database_map_; | 136 IndexedDBDatabaseMap database_map_; |
137 OriginDBMap origin_dbs_; | 137 OriginDBMap origin_dbs_; |
138 | 138 |
139 typedef std::map<GURL, scoped_refptr<IndexedDBBackingStore> > | 139 typedef std::map<GURL, scoped_refptr<IndexedDBBackingStore> > |
140 IndexedDBBackingStoreMap; | 140 IndexedDBBackingStoreMap; |
141 IndexedDBBackingStoreMap backing_store_map_; | 141 IndexedDBBackingStoreMap backing_store_map_; |
142 | 142 |
143 std::set<scoped_refptr<IndexedDBBackingStore> > session_only_backing_stores_; | 143 std::set<scoped_refptr<IndexedDBBackingStore> > session_only_backing_stores_; |
144 IndexedDBBackingStoreMap backing_stores_with_active_blobs_; | 144 IndexedDBBackingStoreMap backing_stores_with_active_blobs_; |
145 std::set<GURL> backends_opened_since_boot_; | 145 std::set<GURL> backends_opened_since_boot_; |
| 146 |
| 147 DISALLOW_COPY_AND_ASSIGN(IndexedDBFactory); |
146 }; | 148 }; |
147 | 149 |
148 } // namespace content | 150 } // namespace content |
149 | 151 |
150 #endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_FACTORY_H_ | 152 #endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_FACTORY_H_ |
OLD | NEW |