| Index: content/browser/indexed_db/mock_browsertest_indexed_db_class_factory.h
|
| diff --git a/content/browser/indexed_db/mock_browsertest_indexed_db_class_factory.h b/content/browser/indexed_db/mock_browsertest_indexed_db_class_factory.h
|
| index 1b77071f0e559365464001b95cbd19abbd07b4a1..acc050a6869300f0f26c7a20c51c9965e90d8b7e 100644
|
| --- a/content/browser/indexed_db/mock_browsertest_indexed_db_class_factory.h
|
| +++ b/content/browser/indexed_db/mock_browsertest_indexed_db_class_factory.h
|
| @@ -5,6 +5,8 @@
|
| #ifndef CONTENT_BROWSER_INDEXED_DB_MOCK_BROWSERTEST_INDEXED_DB_CLASS_FACTORY_H_
|
| #define CONTENT_BROWSER_INDEXED_DB_MOCK_BROWSERTEST_INDEXED_DB_CLASS_FACTORY_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <map>
|
| #include <set>
|
|
|
| @@ -44,9 +46,9 @@ class MockBrowserTestIndexedDBClassFactory : public IndexedDBClassFactory {
|
| IndexedDBFactory* factory,
|
| const IndexedDBDatabase::Identifier& unique_identifier) override;
|
| IndexedDBTransaction* CreateIndexedDBTransaction(
|
| - int64 id,
|
| + int64_t id,
|
| scoped_refptr<IndexedDBDatabaseCallbacks> callbacks,
|
| - const std::set<int64>& scope,
|
| + const std::set<int64_t>& scope,
|
| blink::WebIDBTransactionMode mode,
|
| IndexedDBDatabase* db,
|
| IndexedDBBackingStore::Transaction* backing_store_transaction) override;
|
|
|