| 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_BACKING_STORE_H_ | 5 #ifndef CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_BACKING_STORE_H_ |
| 6 #define CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_BACKING_STORE_H_ | 6 #define CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_BACKING_STORE_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 #include "content/browser/indexed_db/indexed_db_active_blob_registry.h" | 22 #include "content/browser/indexed_db/indexed_db_active_blob_registry.h" |
| 23 #include "content/browser/indexed_db/indexed_db_blob_info.h" | 23 #include "content/browser/indexed_db/indexed_db_blob_info.h" |
| 24 #include "content/browser/indexed_db/indexed_db_leveldb_coding.h" | 24 #include "content/browser/indexed_db/indexed_db_leveldb_coding.h" |
| 25 #include "content/browser/indexed_db/indexed_db_metadata.h" | 25 #include "content/browser/indexed_db/indexed_db_metadata.h" |
| 26 #include "content/browser/indexed_db/leveldb/leveldb_iterator.h" | 26 #include "content/browser/indexed_db/leveldb/leveldb_iterator.h" |
| 27 #include "content/browser/indexed_db/leveldb/leveldb_transaction.h" | 27 #include "content/browser/indexed_db/leveldb/leveldb_transaction.h" |
| 28 #include "content/common/content_export.h" | 28 #include "content/common/content_export.h" |
| 29 #include "content/common/indexed_db/indexed_db_key.h" | 29 #include "content/common/indexed_db/indexed_db_key.h" |
| 30 #include "content/common/indexed_db/indexed_db_key_path.h" | 30 #include "content/common/indexed_db/indexed_db_key_path.h" |
| 31 #include "content/common/indexed_db/indexed_db_key_range.h" | 31 #include "content/common/indexed_db/indexed_db_key_range.h" |
| 32 #include "storage/browser/blob/blob_data_handle.h" |
| 32 #include "third_party/leveldatabase/src/include/leveldb/status.h" | 33 #include "third_party/leveldatabase/src/include/leveldb/status.h" |
| 33 #include "url/gurl.h" | 34 #include "url/gurl.h" |
| 34 #include "webkit/browser/blob/blob_data_handle.h" | |
| 35 | 35 |
| 36 namespace base { | 36 namespace base { |
| 37 class SequencedTaskRunner; | 37 class SequencedTaskRunner; |
| 38 } | 38 } |
| 39 | 39 |
| 40 namespace storage { | 40 namespace storage { |
| 41 class FileWriterDelegate; | 41 class FileWriterDelegate; |
| 42 } | 42 } |
| 43 | 43 |
| 44 namespace net { | 44 namespace net { |
| (...skipping 533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 578 // will hold a reference to this backing store. | 578 // will hold a reference to this backing store. |
| 579 IndexedDBActiveBlobRegistry active_blob_registry_; | 579 IndexedDBActiveBlobRegistry active_blob_registry_; |
| 580 base::OneShotTimer<IndexedDBBackingStore> close_timer_; | 580 base::OneShotTimer<IndexedDBBackingStore> close_timer_; |
| 581 | 581 |
| 582 DISALLOW_COPY_AND_ASSIGN(IndexedDBBackingStore); | 582 DISALLOW_COPY_AND_ASSIGN(IndexedDBBackingStore); |
| 583 }; | 583 }; |
| 584 | 584 |
| 585 } // namespace content | 585 } // namespace content |
| 586 | 586 |
| 587 #endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_BACKING_STORE_H_ | 587 #endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_BACKING_STORE_H_ |
| OLD | NEW |