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

Unified Diff: content/test/weburl_loader_mock_factory.cc

Issue 1544273002: Switch to standard integer types in content/. (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
« no previous file with comments | « content/test/weburl_loader_mock_factory.h ('k') | content/utility/in_process_utility_thread.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « content/test/weburl_loader_mock_factory.h ('k') | content/utility/in_process_utility_thread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698