| 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 314ce23f70ec5a02e52f25a11f0650d752468776..104d99b73006303c89e029e4bd852ba781517648 100644
|
| --- a/content/browser/indexed_db/indexed_db_backing_store_unittest.cc
|
| +++ b/content/browser/indexed_db/indexed_db_backing_store_unittest.cc
|
| @@ -335,7 +335,12 @@ class MockIDBFactory : public IndexedDBFactory {
|
| scoped_refptr<IndexedDBBackingStore> TestOpenBackingStore(
|
| const WebSecurityOrigin& origin,
|
| const base::FilePath& data_directory) {
|
| - return OpenBackingStore(origin.databaseIdentifier(), data_directory);
|
| + WebKit::WebIDBCallbacks::DataLoss data_loss =
|
| + WebKit::WebIDBCallbacks::DataLossNone;
|
| + scoped_refptr<IndexedDBBackingStore> backing_store = OpenBackingStore(
|
| + origin.databaseIdentifier(), data_directory, &data_loss);
|
| + EXPECT_EQ(WebKit::WebIDBCallbacks::DataLossNone, data_loss);
|
| + return backing_store;
|
| }
|
|
|
| private:
|
|
|