Index: content/test/weburl_loader_mock_factory.cc |
diff --git a/content/test/weburl_loader_mock_factory.cc b/content/test/weburl_loader_mock_factory.cc |
index 60e7094cc04820ccb3b4610f37a6e9faf28546ee..112c44230c9fd18ada50e38994ec66679568090f 100644 |
--- a/content/test/weburl_loader_mock_factory.cc |
+++ b/content/test/weburl_loader_mock_factory.cc |
@@ -4,9 +4,12 @@ |
#include "content/test/weburl_loader_mock_factory.h" |
+#include <stdint.h> |
+ |
#include "base/files/file_util.h" |
#include "base/logging.h" |
#include "base/run_loop.h" |
+#include "build/build_config.h" |
#include "content/test/weburl_loader_mock.h" |
#include "third_party/WebKit/public/platform/WebString.h" |
#include "third_party/WebKit/public/platform/WebURLError.h" |
@@ -169,7 +172,7 @@ bool WebURLLoaderMockFactory::ReadFile(const base::FilePath& file_path, |
if (file_path.empty()) |
return true; |
- int64 file_size = 0; |
+ int64_t file_size = 0; |
if (!base::GetFileSize(file_path, &file_size)) |
return false; |