summaryrefslogtreecommitdiffstats
path: root/chrome/browser/android/offline_pages/offline_page_utils_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/android/offline_pages/offline_page_utils_unittest.cc')
-rw-r--r--chrome/browser/android/offline_pages/offline_page_utils_unittest.cc8
1 files changed, 5 insertions, 3 deletions
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 8c2f940..8f34302 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