Index: content/browser/download/download_file.h |
diff --git a/content/browser/download/download_file.h b/content/browser/download/download_file.h |
index 568e7ee091c27c1a610ce8041e85d4641b65bf0d..2514df15519f24b0f0f94d7b9252fc3d9da3a86c 100644 |
--- a/content/browser/download/download_file.h |
+++ b/content/browser/download/download_file.h |
@@ -5,9 +5,10 @@ |
#ifndef CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_FILE_H_ |
#define CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_FILE_H_ |
+#include <stdint.h> |
+ |
#include <string> |
-#include "base/basictypes.h" |
#include "base/callback_forward.h" |
#include "base/files/file_path.h" |
#include "content/common/content_export.h" |
@@ -64,7 +65,7 @@ class CONTENT_EXPORT DownloadFile { |
virtual base::FilePath FullPath() const = 0; |
virtual bool InProgress() const = 0; |
- virtual int64 CurrentSpeed() const = 0; |
+ virtual int64_t CurrentSpeed() const = 0; |
// Set |hash| with sha256 digest for the file. |
// Returns true if digest is successfully calculated. |