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

Unified Diff: chrome/browser/android/history_report/delta_file_commons.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_commons.h
diff --git a/chrome/browser/android/history_report/delta_file_commons.h b/chrome/browser/android/history_report/delta_file_commons.h
index 2c2cd306002b67e816baa49847a1d552f16ec1e7..42f12465d573554dbcd994d1d8569a4335dd5da1 100644
--- a/chrome/browser/android/history_report/delta_file_commons.h
+++ b/chrome/browser/android/history_report/delta_file_commons.h
@@ -5,7 +5,8 @@
#ifndef CHROME_BROWSER_ANDROID_HISTORY_REPORT_DELTA_FILE_COMMONS_H_
#define CHROME_BROWSER_ANDROID_HISTORY_REPORT_DELTA_FILE_COMMONS_H_
-#include "base/basictypes.h"
+#include <stdint.h>
+
#include "base/strings/string16.h"
#include "chrome/browser/android/proto/delta_file.pb.h"
#include "components/bookmarks/browser/bookmark_model.h"
@@ -22,7 +23,7 @@ class DeltaFileEntryWithData {
~DeltaFileEntryWithData();
// Returns sequence number of this delta file entry.
- int64 SeqNo() const;
+ int64_t SeqNo() const;
// Returns type of delta file entry ('add' or 'del').
std::string Type() const;
@@ -37,7 +38,7 @@ class DeltaFileEntryWithData {
base::string16 Title() const;
// Returns ranking score of url described by delta file entry.
- int32 Score() const;
+ int32_t Score() const;
// Returns part of delta file entry's url
// which will be used as a key in search index.

Powered by Google App Engine
This is Rietveld 408576698