OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 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_fake_backing_store.h" | 5 #include "content/browser/indexed_db/indexed_db_fake_backing_store.h" |
6 | 6 |
7 #include <vector> | |
8 | |
9 #include "base/memory/scoped_ptr.h" | 7 #include "base/memory/scoped_ptr.h" |
10 | 8 |
11 namespace content { | 9 namespace content { |
12 | 10 |
13 IndexedDBFakeBackingStore::~IndexedDBFakeBackingStore() {} | 11 IndexedDBFakeBackingStore::~IndexedDBFakeBackingStore() {} |
14 | 12 |
15 std::vector<string16> IndexedDBFakeBackingStore::GetDatabaseNames() { | 13 std::vector<string16> IndexedDBFakeBackingStore::GetDatabaseNames() { |
16 return std::vector<string16>(); | 14 return std::vector<string16>(); |
17 } | 15 } |
18 bool IndexedDBFakeBackingStore::GetIDBDatabaseMetaData( | 16 bool IndexedDBFakeBackingStore::GetIDBDatabaseMetaData( |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 IndexedDBBackingStore::Transaction* transaction, | 146 IndexedDBBackingStore::Transaction* transaction, |
149 int64 database_id, | 147 int64 database_id, |
150 int64 object_store_id, | 148 int64 object_store_id, |
151 int64 index_id, | 149 int64 index_id, |
152 const IndexedDBKeyRange& key_range, | 150 const IndexedDBKeyRange& key_range, |
153 indexed_db::CursorDirection) { | 151 indexed_db::CursorDirection) { |
154 return scoped_ptr<IndexedDBBackingStore::Cursor>(); | 152 return scoped_ptr<IndexedDBBackingStore::Cursor>(); |
155 } | 153 } |
156 | 154 |
157 } // namespace content | 155 } // namespace content |
OLD | NEW |