Index: content/browser/indexed_db/mock_browsertest_indexed_db_class_factory.cc |
diff --git a/content/browser/indexed_db/mock_browsertest_indexed_db_class_factory.cc b/content/browser/indexed_db/mock_browsertest_indexed_db_class_factory.cc |
index dc02ff7331c4748bd2b3998951b89b828dc417f9..1ece58235e1b66df496749f91c0c3e9610a0c127 100644 |
--- a/content/browser/indexed_db/mock_browsertest_indexed_db_class_factory.cc |
+++ b/content/browser/indexed_db/mock_browsertest_indexed_db_class_factory.cc |
@@ -2,6 +2,8 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
+#include <stddef.h> |
+ |
#include <string> |
#include "base/logging.h" |
@@ -60,9 +62,9 @@ class IndexedDBTestDatabase : public IndexedDBDatabase { |
class IndexedDBTestTransaction : public IndexedDBTransaction { |
public: |
IndexedDBTestTransaction( |
- 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) |
@@ -262,9 +264,9 @@ MockBrowserTestIndexedDBClassFactory::CreateIndexedDBDatabase( |
IndexedDBTransaction* |
MockBrowserTestIndexedDBClassFactory::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) { |