| Index: content/browser/download/download_file_impl.h
|
| diff --git a/content/browser/download/download_file_impl.h b/content/browser/download/download_file_impl.h
|
| index 2a8edb3ddd83f7c5737b2ec0f3907019a5aa1abf..98381128505efe5b447669cc9d784dd9542d991f 100644
|
| --- a/content/browser/download/download_file_impl.h
|
| +++ b/content/browser/download/download_file_impl.h
|
| @@ -7,6 +7,10 @@
|
|
|
| #include "content/browser/download/download_file.h"
|
|
|
| +#include <stddef.h>
|
| +#include <stdint.h>
|
| +
|
| +#include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/memory/weak_ptr.h"
|
| @@ -56,7 +60,7 @@ class CONTENT_EXPORT DownloadFileImpl : public DownloadFile {
|
| void Cancel() override;
|
| base::FilePath FullPath() const override;
|
| bool InProgress() const override;
|
| - int64 CurrentSpeed() const override;
|
| + int64_t CurrentSpeed() const override;
|
| bool GetHash(std::string* hash) override;
|
| std::string GetHashState() override;
|
| void SetClientGuid(const std::string& guid) override;
|
|
|