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 #include <string> |
| 11 #include <utility> |
10 | 12 |
11 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
12 #include "base/files/file_path.h" | 14 #include "base/files/file_path.h" |
13 #include "base/memory/ref_counted.h" | 15 #include "base/memory/ref_counted.h" |
14 #include "base/strings/string16.h" | 16 #include "base/strings/string16.h" |
15 #include "content/browser/indexed_db/indexed_db_callbacks.h" | 17 #include "content/browser/indexed_db/indexed_db_callbacks.h" |
16 #include "content/browser/indexed_db/indexed_db_database.h" | 18 #include "content/browser/indexed_db/indexed_db_database.h" |
17 #include "content/browser/indexed_db/indexed_db_database_callbacks.h" | 19 #include "content/browser/indexed_db/indexed_db_database_callbacks.h" |
18 #include "content/common/content_export.h" | 20 #include "content/common/content_export.h" |
19 #include "url/gurl.h" | 21 #include "url/gurl.h" |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 std::set<scoped_refptr<IndexedDBBackingStore> > session_only_backing_stores_; | 145 std::set<scoped_refptr<IndexedDBBackingStore> > session_only_backing_stores_; |
144 IndexedDBBackingStoreMap backing_stores_with_active_blobs_; | 146 IndexedDBBackingStoreMap backing_stores_with_active_blobs_; |
145 std::set<GURL> backends_opened_since_boot_; | 147 std::set<GURL> backends_opened_since_boot_; |
146 | 148 |
147 DISALLOW_COPY_AND_ASSIGN(IndexedDBFactory); | 149 DISALLOW_COPY_AND_ASSIGN(IndexedDBFactory); |
148 }; | 150 }; |
149 | 151 |
150 } // namespace content | 152 } // namespace content |
151 | 153 |
152 #endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_FACTORY_H_ | 154 #endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_FACTORY_H_ |
OLD | NEW |