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

Unified Diff: chrome/browser/android/offline_pages/offline_page_utils.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/offline_pages/offline_page_utils.h
diff --git a/chrome/browser/android/offline_pages/offline_page_utils.h b/chrome/browser/android/offline_pages/offline_page_utils.h
index 54ef11711508011d0adb5b0092eb31711da22b3c..f06d9643dc7e87c65cc4669e28463f1e91e74faa 100644
--- a/chrome/browser/android/offline_pages/offline_page_utils.h
+++ b/chrome/browser/android/offline_pages/offline_page_utils.h
@@ -5,7 +5,7 @@
#ifndef CHROME_BROWSER_ANDROID_OFFLINE_PAGES_OFFLINE_PAGE_UTILS_H_
#define CHROME_BROWSER_ANDROID_OFFLINE_PAGES_OFFLINE_PAGE_UTILS_H_
-#include "base/basictypes.h"
+#include <stdint.h>
class GURL;
@@ -32,7 +32,7 @@ class OfflinePageUtils {
const GURL& offline_url);
// Gets a bookmark ID related to the |offline_url|.
- static int64 GetBookmarkIdForOfflineURL(
+ static int64_t GetBookmarkIdForOfflineURL(
content::BrowserContext* browser_context,
const GURL& offline_url);

Powered by Google App Engine
This is Rietveld 408576698