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

Unified Diff: chrome/browser/android/offline_pages/offline_page_utils_unittest.cc

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_unittest.cc
diff --git a/chrome/browser/android/offline_pages/offline_page_utils_unittest.cc b/chrome/browser/android/offline_pages/offline_page_utils_unittest.cc
index 8c2f940fa1828ddceac15381b5b337061acd8eaa..8f343027eb62757a6d4b06e5ea561ff741724428 100644
--- a/chrome/browser/android/offline_pages/offline_page_utils_unittest.cc
+++ b/chrome/browser/android/offline_pages/offline_page_utils_unittest.cc
@@ -4,6 +4,8 @@
#include "chrome/browser/android/offline_pages/offline_page_utils.h"
+#include <stdint.h>
+
#include "base/callback.h"
#include "base/command_line.h"
#include "base/files/file.h"
@@ -29,9 +31,9 @@ namespace {
const GURL kTestPage1Url("http://test.org/page1");
const GURL kTestPage2Url("http://test.org/page2");
const GURL kTestPage3Url("http://test.org/page3");
-const int64 kTestPage1BookmarkId = 1234;
-const int64 kTestPage2BookmarkId = 5678;
-const int64 kTestFileSize = 876543LL;
+const int64_t kTestPage1BookmarkId = 1234;
+const int64_t kTestPage2BookmarkId = 5678;
+const int64_t kTestFileSize = 876543LL;
} // namespace

Powered by Google App Engine
This is Rietveld 408576698