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

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

Issue 810403004: [Storage] Blob Storage Refactoring pt 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: memory leak fixed Created 5 years, 11 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.h
diff --git a/content/browser/indexed_db/indexed_db_fake_backing_store.h b/content/browser/indexed_db/indexed_db_fake_backing_store.h
index 9a4fd0927a691968e8a4fee721dbf38be92503be..b054fec3f4a6ca9a1307e0e9eb04ae1f6ee1d6b7 100644
--- a/content/browser/indexed_db/indexed_db_fake_backing_store.h
+++ b/content/browser/indexed_db/indexed_db_fake_backing_store.h
@@ -46,13 +46,14 @@ class IndexedDBFakeBackingStore : public IndexedDBBackingStore {
int64 database_id,
int64 object_store_id) override;
- leveldb::Status PutRecord(IndexedDBBackingStore::Transaction* transaction,
- int64 database_id,
- int64 object_store_id,
- const IndexedDBKey& key,
- IndexedDBValue* value,
- ScopedVector<storage::BlobDataHandle>* handles,
- RecordIdentifier* record) override;
+ leveldb::Status PutRecord(
+ IndexedDBBackingStore::Transaction* transaction,
+ int64 database_id,
+ int64 object_store_id,
+ const IndexedDBKey& key,
+ IndexedDBValue* value,
+ ScopedVector<storage::BlobDataSnapshotHandle>* handles,
+ RecordIdentifier* record) override;
leveldb::Status ClearObjectStore(Transaction*,
int64 database_id,

Powered by Google App Engine
This is Rietveld 408576698