| Index: content/browser/indexed_db/indexed_db_backing_store_unittest.cc
|
| diff --git a/content/browser/indexed_db/indexed_db_backing_store_unittest.cc b/content/browser/indexed_db/indexed_db_backing_store_unittest.cc
|
| index c049019db82c7b0c16a0b90d7108dbd91c6710a9..644e608b6b7c2a5fe608c597a77a1183d5563c15 100644
|
| --- a/content/browser/indexed_db/indexed_db_backing_store_unittest.cc
|
| +++ b/content/browser/indexed_db/indexed_db_backing_store_unittest.cc
|
| @@ -187,18 +187,12 @@ class TestIDBFactory : public IndexedDBFactoryImpl {
|
| scoped_refptr<TestableIndexedDBBackingStore> OpenBackingStoreForTest(
|
| const Origin& origin,
|
| net::URLRequestContext* url_request_context) {
|
| - blink::WebIDBDataLoss data_loss;
|
| - std::string data_loss_reason;
|
| + IndexedDBDataLossInfo data_loss_info;
|
| bool disk_full;
|
| leveldb::Status status;
|
| scoped_refptr<IndexedDBBackingStore> backing_store =
|
| - OpenBackingStore(origin,
|
| - context()->data_path(),
|
| - url_request_context,
|
| - &data_loss,
|
| - &data_loss_reason,
|
| - &disk_full,
|
| - &status);
|
| + OpenBackingStore(origin, context()->data_path(), url_request_context,
|
| + &data_loss_info, &disk_full, &status);
|
| scoped_refptr<TestableIndexedDBBackingStore> testable_store =
|
| static_cast<TestableIndexedDBBackingStore*>(backing_store.get());
|
| return testable_store;
|
| @@ -211,8 +205,7 @@ class TestIDBFactory : public IndexedDBFactoryImpl {
|
| const 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* status) override {
|
|
|