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

Unified Diff: components/component_updater/url_fetcher_downloader.cc

Issue 590333002: Replace usage of basictypes.h with a combination of stdint.h and base/macros.h. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Created 6 years, 3 months 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 | « components/component_updater/url_fetcher_downloader.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « components/component_updater/url_fetcher_downloader.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698