| Index: content/browser/download/save_file.h
|
| diff --git a/content/browser/download/save_file.h b/content/browser/download/save_file.h
|
| index bfce4d982f60b34cfd0f90d5d6346085c40e5f0f..84dd3cb3cdc9f3df3df402e6411e8917b1115434 100644
|
| --- a/content/browser/download/save_file.h
|
| +++ b/content/browser/download/save_file.h
|
| @@ -5,8 +5,11 @@
|
| #ifndef CONTENT_BROWSER_DOWNLOAD_SAVE_FILE_H_
|
| #define CONTENT_BROWSER_DOWNLOAD_SAVE_FILE_H_
|
|
|
| -#include "base/basictypes.h"
|
| +#include <stddef.h>
|
| +#include <stdint.h>
|
| +
|
| #include "base/files/file_path.h"
|
| +#include "base/macros.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "content/browser/download/base_file.h"
|
| #include "content/browser/download/save_types.h"
|
| @@ -34,7 +37,7 @@ class SaveFile {
|
| void AnnotateWithSourceInformation();
|
| base::FilePath FullPath() const;
|
| bool InProgress() const;
|
| - int64 BytesSoFar() const;
|
| + int64_t BytesSoFar() const;
|
| bool GetHash(std::string* hash);
|
| std::string DebugString() const;
|
|
|
|
|