| 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
|
|
|
|
|