| 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();
|
|
|
|
|