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

Unified Diff: chrome/browser/history/android/android_history_provider_service.h

Issue 1550593002: Switch to standard integer types in chrome/browser/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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: chrome/browser/history/android/android_history_provider_service.h
diff --git a/chrome/browser/history/android/android_history_provider_service.h b/chrome/browser/history/android/android_history_provider_service.h
index b4f1bf3084b4d2cce21ed6949303ff8521d9441a..5e087e5191d31849c93af06d64d09d44019ddf84 100644
--- a/chrome/browser/history/android/android_history_provider_service.h
+++ b/chrome/browser/history/android/android_history_provider_service.h
@@ -5,7 +5,10 @@
#ifndef CHROME_BROWSER_HISTORY_ANDROID_ANDROID_HISTORY_PROVIDER_SERVICE_H_
#define CHROME_BROWSER_HISTORY_ANDROID_ANDROID_HISTORY_PROVIDER_SERVICE_H_
+#include <stdint.h>
+
#include "base/callback.h"
+#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "base/task/cancelable_task_tracker.h"
#include "components/favicon_base/favicon_callback.h"
@@ -34,7 +37,7 @@ class AndroidHistoryProviderService {
// Callback invoked when a method inserting rows in the database complete.
// The value is the new row id or 0 if the insertion failed.
- typedef base::Callback<void(int64)> InsertCallback;
+ typedef base::Callback<void(int64_t)> InsertCallback;
// Callback invoked when a method deleting rows in the database complete.
// The value is the number of rows deleted or 0 if the deletion failed.

Powered by Google App Engine
This is Rietveld 408576698