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

Unified Diff: chrome/browser/android/history_report/delta_file_service.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/delta_file_service.h
diff --git a/chrome/browser/android/history_report/delta_file_service.h b/chrome/browser/android/history_report/delta_file_service.h
index a377b491aca210ea3a8e19a4c5a58a41adfa42c2..dda4e86035ccff02beaa48f6d5e23e0f706beea0 100644
--- a/chrome/browser/android/history_report/delta_file_service.h
+++ b/chrome/browser/android/history_report/delta_file_service.h
@@ -5,9 +5,12 @@
#ifndef CHROME_BROWSER_ANDROID_HISTORY_REPORT_DELTA_FILE_SERVICE_H_
#define CHROME_BROWSER_ANDROID_HISTORY_REPORT_DELTA_FILE_SERVICE_H_
+#include <stdint.h>
+
#include <string>
#include <vector>
+#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "base/threading/sequenced_worker_pool.h"
@@ -34,13 +37,13 @@ class DeltaFileService {
void PageDeleted(const GURL& url);
// Removes all delta file entries with seqno <= lower_bound.
// Returns max seqno in delta file.
- int64 Trim(int64 lower_bound);
+ int64_t Trim(int64_t lower_bound);
// Removes all data from delta file and populates it with new addition
// entries for given urls.
bool Recreate(const std::vector<std::string>& urls);
// Provides up to limit delta file entries with seqno > 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);
// Removes all entries from delta file.
void Clear();

Powered by Google App Engine
This is Rietveld 408576698