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

Unified Diff: chrome/browser/history/android/bookmark_model_sql_handler.h

Issue 1550593002: Switch to standard integer types in chrome/browser/, part 2 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/history/android/bookmark_model_sql_handler.h
diff --git a/chrome/browser/history/android/bookmark_model_sql_handler.h b/chrome/browser/history/android/bookmark_model_sql_handler.h
index 7f15600b1d5165f70a7ed9a1d2a360272182dda5..ba16d93fa9e70f5a71b232adec89de598095bdb2 100644
--- a/chrome/browser/history/android/bookmark_model_sql_handler.h
+++ b/chrome/browser/history/android/bookmark_model_sql_handler.h
@@ -5,6 +5,9 @@
#ifndef CHROME_BROWSER_HISTORY_ANDROID_BOOKMARK_MODEL_SQL_HANDLER_H_
#define CHROME_BROWSER_HISTORY_ANDROID_BOOKMARK_MODEL_SQL_HANDLER_H_
+#include <stdint.h>
+
+#include "base/macros.h"
#include "components/history/core/browser/android/sql_handler.h"
class Profile;
@@ -51,7 +54,7 @@ class BookmarkModelSQLHandler : public SQLHandler {
// Adds a bookmark with the given |url|, |title| and |parent_id|.
void AddBookmark(const GURL& url,
const base::string16& title,
- int64 parent_id);
+ int64_t parent_id);
// Removes the bookmark with the given |url|.
void RemoveBookmark(const GURL& url);

Powered by Google App Engine
This is Rietveld 408576698