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

Unified Diff: chrome/browser/android/history_report/data_provider.cc

Issue 1542413002: Switch to standard integer types in chrome/browser/, part 1 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/android/history_report/data_provider.cc
diff --git a/chrome/browser/android/history_report/data_provider.cc b/chrome/browser/android/history_report/data_provider.cc
index d589ece08ed179f860d5b3e32cf7b4c63004a698..cde2a3acd1cd5986245439be9efaa9102ce52691 100644
--- a/chrome/browser/android/history_report/data_provider.cc
+++ b/chrome/browser/android/history_report/data_provider.cc
@@ -3,6 +3,9 @@
// found in the LICENSE file.
#include "chrome/browser/android/history_report/data_provider.h"
+
+#include <stddef.h>
+
#include "base/bind.h"
#include "base/containers/hash_tables.h"
#include "base/logging.h"
@@ -105,9 +108,9 @@ DataProvider::DataProvider(Profile* profile,
DataProvider::~DataProvider() {}
-scoped_ptr<std::vector<DeltaFileEntryWithData> > DataProvider::Query(
- int64 last_seq_no,
- int32 limit) {
+scoped_ptr<std::vector<DeltaFileEntryWithData>> DataProvider::Query(
+ int64_t last_seq_no,
+ int32_t limit) {
if (last_seq_no == 0)
RecreateLog();
scoped_ptr<std::vector<DeltaFileEntryWithData> > entries;

Powered by Google App Engine
This is Rietveld 408576698