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

Unified Diff: chrome/browser/android/history_report/delta_file_backend_leveldb.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_backend_leveldb.h
diff --git a/chrome/browser/android/history_report/delta_file_backend_leveldb.h b/chrome/browser/android/history_report/delta_file_backend_leveldb.h
index 85f0f9116a5b771157279029c3e579db651b7275..d4295d9d4aa21ac549ae41054b49f449fbca5ac5 100644
--- a/chrome/browser/android/history_report/delta_file_backend_leveldb.h
+++ b/chrome/browser/android/history_report/delta_file_backend_leveldb.h
@@ -5,9 +5,12 @@
#ifndef CHROME_BROWSER_ANDROID_HISTORY_REPORT_DELTA_FILE_BACKEND_LEVELDB_H_
#define CHROME_BROWSER_ANDROID_HISTORY_REPORT_DELTA_FILE_BACKEND_LEVELDB_H_
+#include <stdint.h>
+
#include <vector>
#include "base/files/file_path.h"
+#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
class GURL;
@@ -33,13 +36,13 @@ class DeltaFileBackend {
// Removes all delta file entries with
// sequence number <= min(|lower_bound|, max sequence number - 1).
// Returns max sequence number in delta file.
- int64 Trim(int64 lower_bound);
+ int64_t Trim(int64_t lower_bound);
// Recreates delta file using given |urls|.
bool Recreate(const std::vector<std::string>& urls);
// 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);
// Removes all entries from delta file
void Clear();

Powered by Google App Engine
This is Rietveld 408576698