| 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_DATABASE_H_ | 5 #ifndef CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_DATABASE_H_ |
| 6 #define CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_DATABASE_H_ | 6 #define CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_DATABASE_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| 11 #include <list> | 11 #include <list> |
| 12 #include <map> | 12 #include <map> |
| 13 #include <memory> | 13 #include <memory> |
| 14 #include <queue> | 14 #include <queue> |
| 15 #include <string> | 15 #include <string> |
| 16 #include <utility> | 16 #include <utility> |
| 17 #include <vector> | 17 #include <vector> |
| 18 | 18 |
| 19 #include "base/macros.h" | 19 #include "base/macros.h" |
| 20 #include "base/memory/ref_counted.h" | 20 #include "base/memory/ref_counted.h" |
| 21 #include "content/browser/indexed_db/indexed_db.h" | 21 #include "content/browser/indexed_db/indexed_db.h" |
| 22 #include "content/browser/indexed_db/indexed_db_backing_store.h" | 22 #include "content/browser/indexed_db/indexed_db_backing_store.h" |
| 23 #include "content/browser/indexed_db/indexed_db_callbacks.h" | 23 #include "content/browser/indexed_db/indexed_db_callbacks.h" |
| 24 #include "content/browser/indexed_db/indexed_db_metadata.h" | |
| 25 #include "content/browser/indexed_db/indexed_db_observer.h" | 24 #include "content/browser/indexed_db/indexed_db_observer.h" |
| 26 #include "content/browser/indexed_db/indexed_db_pending_connection.h" | 25 #include "content/browser/indexed_db/indexed_db_pending_connection.h" |
| 27 #include "content/browser/indexed_db/indexed_db_transaction_coordinator.h" | 26 #include "content/browser/indexed_db/indexed_db_transaction_coordinator.h" |
| 28 #include "content/browser/indexed_db/list_set.h" | 27 #include "content/browser/indexed_db/list_set.h" |
| 28 #include "content/common/indexed_db/indexed_db_metadata.h" |
| 29 #include "third_party/WebKit/public/platform/modules/indexeddb/WebIDBTypes.h" | 29 #include "third_party/WebKit/public/platform/modules/indexeddb/WebIDBTypes.h" |
| 30 | 30 |
| 31 namespace url { | 31 namespace url { |
| 32 class Origin; | 32 class Origin; |
| 33 } | 33 } |
| 34 | 34 |
| 35 namespace content { | 35 namespace content { |
| 36 | 36 |
| 37 class IndexedDBBlobInfo; | 37 class IndexedDBBlobInfo; |
| 38 class IndexedDBConnection; | 38 class IndexedDBConnection; |
| (...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 353 bool processing_pending_requests_ = false; | 353 bool processing_pending_requests_ = false; |
| 354 | 354 |
| 355 bool experimental_web_platform_features_enabled_; | 355 bool experimental_web_platform_features_enabled_; |
| 356 | 356 |
| 357 DISALLOW_COPY_AND_ASSIGN(IndexedDBDatabase); | 357 DISALLOW_COPY_AND_ASSIGN(IndexedDBDatabase); |
| 358 }; | 358 }; |
| 359 | 359 |
| 360 } // namespace content | 360 } // namespace content |
| 361 | 361 |
| 362 #endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_DATABASE_H_ | 362 #endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_DATABASE_H_ |
| OLD | NEW |