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(); |