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_index_writer.h" | 5 #include "content/browser/indexed_db/indexed_db_index_writer.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "base/utf_string_conversions.h" | 8 #include "base/strings/utf_string_conversions.h" |
9 #include "content/browser/indexed_db/indexed_db_backing_store.h" | 9 #include "content/browser/indexed_db/indexed_db_backing_store.h" |
10 #include "content/browser/indexed_db/indexed_db_tracing.h" | 10 #include "content/browser/indexed_db/indexed_db_tracing.h" |
11 #include "content/browser/indexed_db/indexed_db_transaction.h" | 11 #include "content/browser/indexed_db/indexed_db_transaction.h" |
12 #include "content/common/indexed_db/indexed_db_key.h" | 12 #include "content/common/indexed_db/indexed_db_key.h" |
13 #include "content/common/indexed_db/indexed_db_key_path.h" | 13 #include "content/common/indexed_db/indexed_db_key_path.h" |
14 #include "content/common/indexed_db/indexed_db_key_range.h" | 14 #include "content/common/indexed_db/indexed_db_key_range.h" |
15 | 15 |
16 namespace content { | 16 namespace content { |
17 | 17 |
18 IndexedDBObjectStoreImpl::IndexWriter::IndexWriter( | 18 IndexedDBObjectStoreImpl::IndexWriter::IndexWriter( |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 return true; | 160 return true; |
161 | 161 |
162 index_writers->push_back(index_writer.release()); | 162 index_writers->push_back(index_writer.release()); |
163 } | 163 } |
164 | 164 |
165 *completed = true; | 165 *completed = true; |
166 return true; | 166 return true; |
167 } | 167 } |
168 | 168 |
169 } // namespace content | 169 } // namespace content |
OLD | NEW |