| Index: components/component_updater/url_fetcher_downloader.h
|
| diff --git a/components/component_updater/url_fetcher_downloader.h b/components/component_updater/url_fetcher_downloader.h
|
| index 034a33787ef52eb44daa0db06dd4c801ea5e312b..576da6c2a6f9eda5faa408967f16814918b95bec 100644
|
| --- a/components/component_updater/url_fetcher_downloader.h
|
| +++ b/components/component_updater/url_fetcher_downloader.h
|
| @@ -5,7 +5,9 @@
|
| #ifndef COMPONENTS_COMPONENT_UPDATER_URL_FETCHER_DOWNLOADER_H_
|
| #define COMPONENTS_COMPONENT_UPDATER_URL_FETCHER_DOWNLOADER_H_
|
|
|
| -#include "base/basictypes.h"
|
| +#include <stdint.h>
|
| +
|
| +#include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/threading/thread_checker.h"
|
| @@ -37,16 +39,16 @@ class UrlFetcherDownloader : public CrxDownloader,
|
| // Overrides for URLFetcherDelegate.
|
| virtual void OnURLFetchComplete(const net::URLFetcher* source) OVERRIDE;
|
| virtual void OnURLFetchDownloadProgress(const net::URLFetcher* source,
|
| - int64 current,
|
| - int64 total) OVERRIDE;
|
| + int64_t current,
|
| + int64_t total) OVERRIDE;
|
| scoped_ptr<net::URLFetcher> url_fetcher_;
|
| net::URLRequestContextGetter* context_getter_;
|
| scoped_refptr<base::SequencedTaskRunner> task_runner_;
|
|
|
| base::Time download_start_time_;
|
|
|
| - int64 downloaded_bytes_;
|
| - int64 total_bytes_;
|
| + int64_t downloaded_bytes_;
|
| + int64_t total_bytes_;
|
|
|
| base::ThreadChecker thread_checker_;
|
|
|
|
|