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

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

Issue 2506773002: [IndexedDB] Integrating failures and corruption with transaction (Closed)
Patch Set: removed extra log statements Created 4 years, 1 month 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
index 6490f6bb557f4cf5917823f7458a466af6b9dd23..cd61ebb54b6e2a3780446496664fe56e2b4f0154 100644
--- a/content/browser/indexed_db/indexed_db_fake_backing_store.cc
+++ b/content/browser/indexed_db/indexed_db_fake_backing_store.cc
@@ -47,11 +47,9 @@ leveldb::Status IndexedDBFakeBackingStore::CreateIDBDatabaseMetaData(
int64_t* row_id) {
return leveldb::Status::OK();
}
-bool IndexedDBFakeBackingStore::UpdateIDBDatabaseIntVersion(Transaction*,
+void IndexedDBFakeBackingStore::UpdateIDBDatabaseIntVersion(Transaction*,
int64_t row_id,
- int64_t version) {
- return false;
-}
+ int64_t version) {}
leveldb::Status IndexedDBFakeBackingStore::DeleteDatabase(
const base::string16& name) {
return leveldb::Status::OK();
« no previous file with comments | « content/browser/indexed_db/indexed_db_fake_backing_store.h ('k') | content/browser/indexed_db/indexed_db_transaction.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698