| 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 207edf34572606406244d80093aeb2b05fd6d577..587e454fb569b9e38442ef0d039225015c0a356d 100644
|
| --- a/content/browser/indexed_db/mock_indexed_db_factory.h
|
| +++ b/content/browser/indexed_db/mock_indexed_db_factory.h
|
| @@ -23,20 +23,20 @@ class MockIndexedDBFactory : public IndexedDBFactory {
|
| bool forced_close));
|
| MOCK_METHOD4(GetDatabaseNames,
|
| void(scoped_refptr<IndexedDBCallbacks> callbacks,
|
| - const GURL& origin_url,
|
| + const url::Origin& origin_url,
|
| const base::FilePath& data_directory,
|
| net::URLRequestContext* request_context));
|
| MOCK_METHOD5(Open,
|
| void(const base::string16& name,
|
| const IndexedDBPendingConnection& connection,
|
| net::URLRequestContext* request_context,
|
| - const GURL& origin_url,
|
| + const url::Origin& origin,
|
| const base::FilePath& data_directory));
|
| MOCK_METHOD5(DeleteDatabase,
|
| void(const base::string16& name,
|
| net::URLRequestContext* request_context,
|
| scoped_refptr<IndexedDBCallbacks> callbacks,
|
| - const GURL& origin_url,
|
| + const url::Origin& origin,
|
| const base::FilePath& data_directory));
|
| MOCK_METHOD1(HandleBackingStoreFailure, void(const GURL& origin_url));
|
| MOCK_METHOD2(HandleBackingStoreCorruption,
|
|
|