Index: content/browser/download/download_browsertest.cc |
diff --git a/content/browser/download/download_browsertest.cc b/content/browser/download/download_browsertest.cc |
index 77e438c565a2f5d0f71f118213bc8f37aa4c94b1..1a224511484205d3e578688a3d9ce248062235e8 100644 |
--- a/content/browser/download/download_browsertest.cc |
+++ b/content/browser/download/download_browsertest.cc |
@@ -5,6 +5,9 @@ |
// This file contains download browser tests that are known to be runnable |
// in a pure content context. Over time tests should be migrated here. |
+#include <stddef.h> |
+#include <stdint.h> |
+ |
#include <vector> |
#include "base/callback_helpers.h" |
@@ -13,11 +16,13 @@ |
#include "base/files/file_util.h" |
#include "base/files/scoped_temp_dir.h" |
#include "base/format_macros.h" |
+#include "base/macros.h" |
#include "base/memory/ref_counted.h" |
#include "base/strings/stringprintf.h" |
#include "base/strings/utf_string_conversions.h" |
#include "base/threading/platform_thread.h" |
#include "base/time/time.h" |
+#include "build/build_config.h" |
#include "content/browser/byte_stream.h" |
#include "content/browser/download/download_file_factory.h" |
#include "content/browser/download/download_file_impl.h" |
@@ -617,7 +622,7 @@ class DownloadContentTest : public ContentBrowserTest { |
// string. |
bool VerifyFile(const base::FilePath& path, |
const std::string& value, |
- const int64 file_size) { |
+ const int64_t file_size) { |
std::string file_contents; |
bool read = base::ReadFileToString(path, &file_contents); |