| OLD | NEW |
| 1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2014 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_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_FACTORY_IMPL_H_ |
| 6 #define CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_FACTORY_IMPL_H_ | 6 #define CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_FACTORY_IMPL_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| 11 | 11 |
| 12 #include "base/gtest_prod_util.h" |
| 12 #include "content/browser/indexed_db/indexed_db_factory.h" | 13 #include "content/browser/indexed_db/indexed_db_factory.h" |
| 13 | 14 |
| 14 namespace content { | 15 namespace content { |
| 15 | 16 |
| 16 class IndexedDBContextImpl; | 17 class IndexedDBContextImpl; |
| 17 | 18 |
| 18 class CONTENT_EXPORT IndexedDBFactoryImpl : public IndexedDBFactory { | 19 class CONTENT_EXPORT IndexedDBFactoryImpl : public IndexedDBFactory { |
| 19 public: | 20 public: |
| 20 explicit IndexedDBFactoryImpl(IndexedDBContextImpl* context); | 21 explicit IndexedDBFactoryImpl(IndexedDBContextImpl* context); |
| 21 | 22 |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 std::set<scoped_refptr<IndexedDBBackingStore> > session_only_backing_stores_; | 128 std::set<scoped_refptr<IndexedDBBackingStore> > session_only_backing_stores_; |
| 128 IndexedDBBackingStoreMap backing_stores_with_active_blobs_; | 129 IndexedDBBackingStoreMap backing_stores_with_active_blobs_; |
| 129 std::set<GURL> backends_opened_since_boot_; | 130 std::set<GURL> backends_opened_since_boot_; |
| 130 | 131 |
| 131 DISALLOW_COPY_AND_ASSIGN(IndexedDBFactoryImpl); | 132 DISALLOW_COPY_AND_ASSIGN(IndexedDBFactoryImpl); |
| 132 }; | 133 }; |
| 133 | 134 |
| 134 } // namespace content | 135 } // namespace content |
| 135 | 136 |
| 136 #endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_FACTORY_IMPL_H_ | 137 #endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_FACTORY_IMPL_H_ |
| OLD | NEW |