Index: components/component_updater/url_fetcher_downloader.cc |
diff --git a/components/component_updater/url_fetcher_downloader.cc b/components/component_updater/url_fetcher_downloader.cc |
index de744b82a64dcd01860d310c9a9e30378ab15511..2eeb3f10b2ca4965c9705f06ca457d1293a77596 100644 |
--- a/components/component_updater/url_fetcher_downloader.cc |
+++ b/components/component_updater/url_fetcher_downloader.cc |
@@ -4,6 +4,8 @@ |
#include "components/component_updater/url_fetcher_downloader.h" |
+#include <stdint.h> |
+ |
#include "base/logging.h" |
#include "base/sequenced_task_runner.h" |
#include "components/component_updater/component_updater_utils.h" |
@@ -90,8 +92,8 @@ void UrlFetcherDownloader::OnURLFetchComplete(const net::URLFetcher* source) { |
void UrlFetcherDownloader::OnURLFetchDownloadProgress( |
const net::URLFetcher* source, |
- int64 current, |
- int64 total) { |
+ int64_t current, |
+ int64_t total) { |
DCHECK(thread_checker_.CalledOnValidThread()); |
downloaded_bytes_ = current; |