Index: content/browser/indexed_db/mock_indexed_db_factory.h |
diff --git a/content/browser/indexed_db/mock_indexed_db_factory.h b/content/browser/indexed_db/mock_indexed_db_factory.h |
index 120c96a9cef74e6aa36659369d00cdd35f532772..ca0735169f49c9edf120c4d3e57586ffc4059155 100644 |
--- a/content/browser/indexed_db/mock_indexed_db_factory.h |
+++ b/content/browser/indexed_db/mock_indexed_db_factory.h |
@@ -57,23 +57,21 @@ class MockIndexedDBFactory : public IndexedDBFactory { |
protected: |
virtual ~MockIndexedDBFactory(); |
- MOCK_METHOD7(OpenBackingStore, |
+ MOCK_METHOD6(OpenBackingStore, |
scoped_refptr<IndexedDBBackingStore>( |
const url::Origin& origin, |
const base::FilePath& data_directory, |
net::URLRequestContext* request_context, |
- blink::WebIDBDataLoss* data_loss, |
- std::string* data_loss_reason, |
+ IndexedDBDataLossInfo* data_loss_info, |
bool* disk_full, |
leveldb::Status* s)); |
- MOCK_METHOD8(OpenBackingStoreHelper, |
+ MOCK_METHOD7(OpenBackingStoreHelper, |
scoped_refptr<IndexedDBBackingStore>( |
const url::Origin& origin, |
const base::FilePath& data_directory, |
net::URLRequestContext* request_context, |
- blink::WebIDBDataLoss* data_loss, |
- std::string* data_loss_message, |
+ IndexedDBDataLossInfo* data_loss_info, |
bool* disk_full, |
bool first_time, |
leveldb::Status* s)); |