| 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 #include "content/browser/indexed_db/indexed_db_backing_store.h" | 5 #include "content/browser/indexed_db/indexed_db_backing_store.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <utility> | 8 #include <utility> |
| 9 | 9 |
| 10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 #include "content/browser/indexed_db/leveldb/leveldb_comparator.h" | 33 #include "content/browser/indexed_db/leveldb/leveldb_comparator.h" |
| 34 #include "content/browser/indexed_db/leveldb/leveldb_database.h" | 34 #include "content/browser/indexed_db/leveldb/leveldb_database.h" |
| 35 #include "content/browser/indexed_db/leveldb/leveldb_factory.h" | 35 #include "content/browser/indexed_db/leveldb/leveldb_factory.h" |
| 36 #include "content/browser/indexed_db/leveldb/leveldb_iterator.h" | 36 #include "content/browser/indexed_db/leveldb/leveldb_iterator.h" |
| 37 #include "content/browser/indexed_db/leveldb/leveldb_transaction.h" | 37 #include "content/browser/indexed_db/leveldb/leveldb_transaction.h" |
| 38 #include "content/common/indexed_db/indexed_db_key.h" | 38 #include "content/common/indexed_db/indexed_db_key.h" |
| 39 #include "content/common/indexed_db/indexed_db_key_path.h" | 39 #include "content/common/indexed_db/indexed_db_key_path.h" |
| 40 #include "content/common/indexed_db/indexed_db_key_range.h" | 40 #include "content/common/indexed_db/indexed_db_key_range.h" |
| 41 #include "content/public/browser/browser_thread.h" | 41 #include "content/public/browser/browser_thread.h" |
| 42 #include "net/url_request/url_request_context.h" | 42 #include "net/url_request/url_request_context.h" |
| 43 #include "net/url_request/url_request_context_getter.h" |
| 43 #include "storage/browser/blob/blob_data_handle.h" | 44 #include "storage/browser/blob/blob_data_handle.h" |
| 44 #include "storage/browser/fileapi/file_stream_writer.h" | 45 #include "storage/browser/fileapi/file_stream_writer.h" |
| 45 #include "storage/browser/fileapi/file_writer_delegate.h" | 46 #include "storage/browser/fileapi/file_writer_delegate.h" |
| 46 #include "storage/browser/fileapi/local_file_stream_writer.h" | 47 #include "storage/browser/fileapi/local_file_stream_writer.h" |
| 47 #include "storage/common/database/database_identifier.h" | 48 #include "storage/common/database/database_identifier.h" |
| 48 #include "storage/common/fileapi/file_system_mount_option.h" | 49 #include "storage/common/fileapi/file_system_mount_option.h" |
| 49 #include "third_party/WebKit/public/platform/modules/indexeddb/WebIDBTypes.h" | 50 #include "third_party/WebKit/public/platform/modules/indexeddb/WebIDBTypes.h" |
| 50 #include "third_party/WebKit/public/web/WebSerializedScriptValueVersion.h" | 51 #include "third_party/WebKit/public/web/WebSerializedScriptValueVersion.h" |
| 51 #include "third_party/leveldatabase/env_chromium.h" | 52 #include "third_party/leveldatabase/env_chromium.h" |
| 52 | 53 |
| (...skipping 4420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4473 | 4474 |
| 4474 IndexedDBBackingStore::Transaction::WriteDescriptor::WriteDescriptor( | 4475 IndexedDBBackingStore::Transaction::WriteDescriptor::WriteDescriptor( |
| 4475 const WriteDescriptor& other) = default; | 4476 const WriteDescriptor& other) = default; |
| 4476 IndexedDBBackingStore::Transaction::WriteDescriptor::~WriteDescriptor() = | 4477 IndexedDBBackingStore::Transaction::WriteDescriptor::~WriteDescriptor() = |
| 4477 default; | 4478 default; |
| 4478 IndexedDBBackingStore::Transaction::WriteDescriptor& | 4479 IndexedDBBackingStore::Transaction::WriteDescriptor& |
| 4479 IndexedDBBackingStore::Transaction::WriteDescriptor:: | 4480 IndexedDBBackingStore::Transaction::WriteDescriptor:: |
| 4480 operator=(const WriteDescriptor& other) = default; | 4481 operator=(const WriteDescriptor& other) = default; |
| 4481 | 4482 |
| 4482 } // namespace content | 4483 } // namespace content |
| OLD | NEW |