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 | 8 |
9 #include "base/files/file_path.h" | 9 #include "base/files/file_path.h" |
10 #include "base/files/file_util.h" | 10 #include "base/files/file_util.h" |
(...skipping 22 matching lines...) Expand all Loading... |
33 #include "content/common/indexed_db/indexed_db_key_path.h" | 33 #include "content/common/indexed_db/indexed_db_key_path.h" |
34 #include "content/common/indexed_db/indexed_db_key_range.h" | 34 #include "content/common/indexed_db/indexed_db_key_range.h" |
35 #include "content/public/browser/browser_thread.h" | 35 #include "content/public/browser/browser_thread.h" |
36 #include "net/url_request/url_request_context.h" | 36 #include "net/url_request/url_request_context.h" |
37 #include "storage/browser/blob/blob_data_handle.h" | 37 #include "storage/browser/blob/blob_data_handle.h" |
38 #include "storage/browser/fileapi/file_stream_writer.h" | 38 #include "storage/browser/fileapi/file_stream_writer.h" |
39 #include "storage/browser/fileapi/file_writer_delegate.h" | 39 #include "storage/browser/fileapi/file_writer_delegate.h" |
40 #include "storage/browser/fileapi/local_file_stream_writer.h" | 40 #include "storage/browser/fileapi/local_file_stream_writer.h" |
41 #include "storage/common/database/database_identifier.h" | 41 #include "storage/common/database/database_identifier.h" |
42 #include "storage/common/fileapi/file_system_mount_option.h" | 42 #include "storage/common/fileapi/file_system_mount_option.h" |
43 #include "third_party/WebKit/public/platform/WebIDBTypes.h" | 43 #include "third_party/WebKit/public/platform/modules/indexeddb/WebIDBTypes.h" |
44 #include "third_party/WebKit/public/web/WebSerializedScriptValueVersion.h" | 44 #include "third_party/WebKit/public/web/WebSerializedScriptValueVersion.h" |
45 #include "third_party/leveldatabase/env_chromium.h" | 45 #include "third_party/leveldatabase/env_chromium.h" |
46 | 46 |
47 using base::FilePath; | 47 using base::FilePath; |
48 using base::StringPiece; | 48 using base::StringPiece; |
49 using std::string; | 49 using std::string; |
50 using storage::FileWriterDelegate; | 50 using storage::FileWriterDelegate; |
51 | 51 |
52 namespace content { | 52 namespace content { |
53 | 53 |
(...skipping 4365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4419 | 4419 |
4420 IndexedDBBackingStore::Transaction::WriteDescriptor::WriteDescriptor( | 4420 IndexedDBBackingStore::Transaction::WriteDescriptor::WriteDescriptor( |
4421 const WriteDescriptor& other) = default; | 4421 const WriteDescriptor& other) = default; |
4422 IndexedDBBackingStore::Transaction::WriteDescriptor::~WriteDescriptor() = | 4422 IndexedDBBackingStore::Transaction::WriteDescriptor::~WriteDescriptor() = |
4423 default; | 4423 default; |
4424 IndexedDBBackingStore::Transaction::WriteDescriptor& | 4424 IndexedDBBackingStore::Transaction::WriteDescriptor& |
4425 IndexedDBBackingStore::Transaction::WriteDescriptor:: | 4425 IndexedDBBackingStore::Transaction::WriteDescriptor:: |
4426 operator=(const WriteDescriptor& other) = default; | 4426 operator=(const WriteDescriptor& other) = default; |
4427 | 4427 |
4428 } // namespace content | 4428 } // namespace content |
OLD | NEW |