Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1270)

Unified Diff: content/browser/indexed_db/indexed_db_class_factory.h

Issue 1549113002: Switch to standard integer types in content/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/indexed_db/indexed_db_class_factory.h
diff --git a/content/browser/indexed_db/indexed_db_class_factory.h b/content/browser/indexed_db/indexed_db_class_factory.h
index b2d202653f6990539bfe2f572c028924c8ce13f9..31e520259ff0f9f7e1e19072bb96619731c07294 100644
--- a/content/browser/indexed_db/indexed_db_class_factory.h
+++ b/content/browser/indexed_db/indexed_db_class_factory.h
@@ -5,6 +5,8 @@
#ifndef CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_CLASS_FACTORY_H_
#define CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_CLASS_FACTORY_H_
+#include <stdint.h>
+
#include <set>
#include "base/lazy_instance.h"
@@ -45,9 +47,9 @@ class CONTENT_EXPORT IndexedDBClassFactory {
const IndexedDBDatabase::Identifier& unique_identifier);
virtual 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);
« no previous file with comments | « content/browser/indexed_db/indexed_db_callbacks.cc ('k') | content/browser/indexed_db/indexed_db_class_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698