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

Unified Diff: content/browser/indexed_db/indexed_db_database_callbacks.cc

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.cc
diff --git a/content/browser/indexed_db/indexed_db_database_callbacks.cc b/content/browser/indexed_db/indexed_db_database_callbacks.cc
index 3d47ad0c11c4dfe3f3a683c25636ea6f4236ebd7..35b15c3bce8efdc1ae42cdbbd3f65400d15349a5 100644
--- a/content/browser/indexed_db/indexed_db_database_callbacks.cc
+++ b/content/browser/indexed_db/indexed_db_database_callbacks.cc
@@ -30,8 +30,8 @@ void IndexedDBDatabaseCallbacks::OnForcedClose() {
dispatcher_host_ = NULL;
}
-void IndexedDBDatabaseCallbacks::OnVersionChange(int64 old_version,
- int64 new_version) {
+void IndexedDBDatabaseCallbacks::OnVersionChange(int64_t old_version,
+ int64_t new_version) {
if (!dispatcher_host_.get())
return;
@@ -39,9 +39,8 @@ void IndexedDBDatabaseCallbacks::OnVersionChange(int64 old_version,
ipc_thread_id_, ipc_database_callbacks_id_, old_version, new_version));
}
-void IndexedDBDatabaseCallbacks::OnAbort(
- int64 host_transaction_id,
- const IndexedDBDatabaseError& error) {
+void IndexedDBDatabaseCallbacks::OnAbort(int64_t host_transaction_id,
+ const IndexedDBDatabaseError& error) {
if (!dispatcher_host_.get())
return;
@@ -54,7 +53,7 @@ void IndexedDBDatabaseCallbacks::OnAbort(
error.message()));
}
-void IndexedDBDatabaseCallbacks::OnComplete(int64 host_transaction_id) {
+void IndexedDBDatabaseCallbacks::OnComplete(int64_t host_transaction_id) {
if (!dispatcher_host_.get())
return;
« no previous file with comments | « content/browser/indexed_db/indexed_db_database_callbacks.h ('k') | content/browser/indexed_db/indexed_db_database_error.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698