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

Unified Diff: content/browser/indexed_db/indexed_db_fake_backing_store.cc

Issue 15724006: Migrate IDBDatabaseBackendTest from blink to chromium (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: update to ToT, fix review comments Created 7 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/indexed_db/indexed_db_fake_backing_store.cc
diff --git a/content/browser/indexed_db/indexed_db_fake_backing_store.cc b/content/browser/indexed_db/indexed_db_fake_backing_store.cc
new file mode 100644
index 0000000000000000000000000000000000000000..2060e38c917373819c3d777fd910d707deaee9f0
--- /dev/null
+++ b/content/browser/indexed_db/indexed_db_fake_backing_store.cc
@@ -0,0 +1,157 @@
+// Copyright (c) 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "content/browser/indexed_db/indexed_db_fake_backing_store.h"
+
+#include <vector>
+
+#include "base/memory/scoped_ptr.h"
+
+namespace content {
+
+IndexedDBFakeBackingStore::~IndexedDBFakeBackingStore() {}
+
+std::vector<string16> IndexedDBFakeBackingStore::GetDatabaseNames() {
+ return std::vector<string16>();
+}
+bool IndexedDBFakeBackingStore::GetIDBDatabaseMetaData(
+ const string16& name,
+ IndexedDBDatabaseMetadata*,
+ bool& found) {
+ return true;
+}
+
+bool IndexedDBFakeBackingStore::CreateIDBDatabaseMetaData(
+ const string16& name,
+ const string16& version,
+ int64_t int_version,
+ int64_t& row_id) {
+ return true;
+}
+bool IndexedDBFakeBackingStore::UpdateIDBDatabaseMetaData(
+ Transaction*,
+ int64_t row_id,
+ const string16& version) {
+ return false;
+}
+bool IndexedDBFakeBackingStore::UpdateIDBDatabaseIntVersion(Transaction*,
+ int64_t row_id,
+ int64_t version) {
+ return false;
+}
+bool IndexedDBFakeBackingStore::DeleteDatabase(const string16& name) {
+ return false;
+}
+
+bool IndexedDBFakeBackingStore::CreateObjectStore(Transaction*,
+ int64_t database_id,
+ int64_t object_store_id,
+ const string16& name,
+ const IndexedDBKeyPath&,
+ bool auto_increment) {
+ return false;
+}
+
+bool IndexedDBFakeBackingStore::ClearObjectStore(Transaction*,
+ int64_t database_id,
+ int64_t object_store_id) {
+ return false;
+}
+bool IndexedDBFakeBackingStore::DeleteRecord(Transaction*,
+ int64_t database_id,
+ int64_t object_store_id,
+ const RecordIdentifier&) {
+ return false;
+}
+bool IndexedDBFakeBackingStore::GetKeyGeneratorCurrentNumber(
+ Transaction*,
+ int64_t database_id,
+ int64_t object_store_id,
+ int64_t& current_number) {
+ return true;
+}
+bool IndexedDBFakeBackingStore::MaybeUpdateKeyGeneratorCurrentNumber(
+ Transaction*,
+ int64_t database_id,
+ int64_t object_store_id,
+ int64_t new_number,
+ bool check_current) {
+ return true;
+}
+bool IndexedDBFakeBackingStore::KeyExistsInObjectStore(
+ Transaction*,
+ int64_t database_id,
+ int64_t object_store_id,
+ const IndexedDBKey&,
+ RecordIdentifier* found_record_identifier,
+ bool& found) {
+ return true;
+}
+
+bool IndexedDBFakeBackingStore::CreateIndex(Transaction*,
+ int64_t database_id,
+ int64_t object_store_id,
+ int64_t index_id,
+ const string16& name,
+ const IndexedDBKeyPath&,
+ bool is_unique,
+ bool is_multi_entry) {
+ return false;
+}
+
+bool IndexedDBFakeBackingStore::DeleteIndex(Transaction*,
+ int64_t database_id,
+ int64_t object_store_id,
+ int64_t index_id) {
+ return false;
+}
+bool IndexedDBFakeBackingStore::PutIndexDataForRecord(Transaction*,
+ int64_t database_id,
+ int64_t object_store_id,
+ int64_t index_id,
+ const IndexedDBKey&,
+ const RecordIdentifier&) {
+ return false;
+}
+
+scoped_ptr<IndexedDBBackingStore::Cursor>
+IndexedDBFakeBackingStore::OpenObjectStoreKeyCursor(
+ IndexedDBBackingStore::Transaction* transaction,
+ int64 database_id,
+ int64 object_store_id,
+ const IndexedDBKeyRange& key_range,
+ indexed_db::CursorDirection) {
+ return scoped_ptr<IndexedDBBackingStore::Cursor>();
+}
+scoped_ptr<IndexedDBBackingStore::Cursor>
+IndexedDBFakeBackingStore::OpenObjectStoreCursor(
+ IndexedDBBackingStore::Transaction* transaction,
+ int64 database_id,
+ int64 object_store_id,
+ const IndexedDBKeyRange& key_range,
+ indexed_db::CursorDirection) {
+ return scoped_ptr<IndexedDBBackingStore::Cursor>();
+}
+scoped_ptr<IndexedDBBackingStore::Cursor>
+IndexedDBFakeBackingStore::OpenIndexKeyCursor(
+ IndexedDBBackingStore::Transaction* transaction,
+ int64 database_id,
+ int64 object_store_id,
+ int64 index_id,
+ const IndexedDBKeyRange& key_range,
+ indexed_db::CursorDirection) {
+ return scoped_ptr<IndexedDBBackingStore::Cursor>();
+}
+scoped_ptr<IndexedDBBackingStore::Cursor>
+IndexedDBFakeBackingStore::OpenIndexCursor(
+ IndexedDBBackingStore::Transaction* transaction,
+ int64 database_id,
+ int64 object_store_id,
+ int64 index_id,
+ const IndexedDBKeyRange& key_range,
+ indexed_db::CursorDirection) {
+ return scoped_ptr<IndexedDBBackingStore::Cursor>();
+}
+
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698