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

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

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.h
diff --git a/chrome/browser/android/history_report/data_provider.h b/chrome/browser/android/history_report/data_provider.h
index 1959a9e81c000b44351a974abeae354c32ca8b9f..5e8f558e16b11aa7abb38665800ad060f3ed17f1 100644
--- a/chrome/browser/android/history_report/data_provider.h
+++ b/chrome/browser/android/history_report/data_provider.h
@@ -5,8 +5,11 @@
#ifndef CHROME_BROWSER_ANDROID_HISTORY_REPORT_DATA_PROVIDER_H_
#define CHROME_BROWSER_ANDROID_HISTORY_REPORT_DATA_PROVIDER_H_
+#include <stdint.h>
+
#include <vector>
+#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "base/task/cancelable_task_tracker.h"
@@ -35,8 +38,8 @@ class DataProvider {
~DataProvider();
// Provides up to limit delta file entries with sequence number > last_seq_no.
- scoped_ptr<std::vector<DeltaFileEntryWithData> > Query(int64 last_seq_no,
- int32 limit);
+ scoped_ptr<std::vector<DeltaFileEntryWithData>> Query(int64_t last_seq_no,
+ int32_t limit);
void StartVisitMigrationToUsageBuffer(
UsageReportsBufferService* buffer_service);
« no previous file with comments | « chrome/browser/android/history_report/data_observer.h ('k') | chrome/browser/android/history_report/data_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698