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

Unified Diff: content/browser/indexed_db/indexed_db_database_callbacks.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_database_callbacks.h
diff --git a/content/browser/indexed_db/indexed_db_database_callbacks.h b/content/browser/indexed_db/indexed_db_database_callbacks.h
index ad16a04b1d72c6ae555ab377b8ee0df065fc22ad..5c8892e5f9b1342cccb7ff3590b13a47cf9e979e 100644
--- a/content/browser/indexed_db/indexed_db_database_callbacks.h
+++ b/content/browser/indexed_db/indexed_db_database_callbacks.h
@@ -5,7 +5,9 @@
#ifndef CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_DATABASE_CALLBACKS_H_
#define CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_DATABASE_CALLBACKS_H_
-#include "base/basictypes.h"
+#include <stdint.h>
+
+#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "content/common/content_export.h"
@@ -21,11 +23,11 @@ class CONTENT_EXPORT IndexedDBDatabaseCallbacks
int ipc_database_callbacks_id);
virtual void OnForcedClose();
- virtual void OnVersionChange(int64 old_version, int64 new_version);
+ virtual void OnVersionChange(int64_t old_version, int64_t new_version);
- virtual void OnAbort(int64 host_transaction_id,
+ virtual void OnAbort(int64_t host_transaction_id,
const IndexedDBDatabaseError& error);
- virtual void OnComplete(int64 host_transaction_id);
+ virtual void OnComplete(int64_t host_transaction_id);
protected:
virtual ~IndexedDBDatabaseCallbacks();
« no previous file with comments | « content/browser/indexed_db/indexed_db_database.cc ('k') | content/browser/indexed_db/indexed_db_database_callbacks.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698