| 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 43d244a1af6b110187cd91085bf071ce61414f77..def10f56775eadca6eae5cdc0eb1bb773bbeee17 100644
|
| --- a/content/browser/indexed_db/indexed_db_fake_backing_store.h
|
| +++ b/content/browser/indexed_db/indexed_db_fake_backing_store.h
|
| @@ -99,7 +99,6 @@ class IndexedDBFakeBackingStore : public IndexedDBBackingStore {
|
| const RecordIdentifier&)
|
| OVERRIDE;
|
| virtual void ReportBlobUnused(int64 database_id, int64 blob_key) OVERRIDE;
|
| -
|
| virtual scoped_ptr<Cursor> OpenObjectStoreKeyCursor(
|
| Transaction* transaction,
|
| int64 database_id,
|
| @@ -132,13 +131,15 @@ class IndexedDBFakeBackingStore : public IndexedDBBackingStore {
|
|
|
| class FakeTransaction : public IndexedDBBackingStore::Transaction {
|
| public:
|
| - FakeTransaction(bool result);
|
| + FakeTransaction(leveldb::Status phase_two_result);
|
| virtual void Begin() OVERRIDE;
|
| - virtual leveldb::Status Commit() OVERRIDE;
|
| + virtual leveldb::Status CommitPhaseOne(
|
| + scoped_refptr<BlobWriteCallback>) OVERRIDE;
|
| + virtual leveldb::Status CommitPhaseTwo() OVERRIDE;
|
| virtual void Rollback() OVERRIDE;
|
|
|
| private:
|
| - bool result_;
|
| + leveldb::Status result_;
|
| };
|
|
|
| protected:
|
|
|