Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(370)

Side by Side Diff: content/browser/indexed_db/indexed_db_fake_backing_store.cc

Issue 18075008: IndexedDB: Switch key/value handling from vector<char> to std::string (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove C++11ism Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
OLDNEW
« no previous file with comments | « content/browser/indexed_db/indexed_db_dispatcher_host.cc ('k') | content/browser/indexed_db/indexed_db_leveldb_coding.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698