| 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 f7950eec2e9a1b900a613c55b1ab8ebcdf2cb87c..7326665d42ce70bba6575f1fbe5463c92f681ca9 100644
|
| --- a/content/browser/download/download_file_impl.h
|
| +++ b/content/browser/download/download_file_impl.h
|
| @@ -47,21 +47,21 @@ class CONTENT_EXPORT DownloadFileImpl : virtual public DownloadFile {
|
| virtual ~DownloadFileImpl();
|
|
|
| // DownloadFile functions.
|
| - virtual void Initialize(const InitializeCallback& callback) OVERRIDE;
|
| + virtual void Initialize(const InitializeCallback& callback) override;
|
| virtual void RenameAndUniquify(
|
| const base::FilePath& full_path,
|
| - const RenameCompletionCallback& callback) OVERRIDE;
|
| + const RenameCompletionCallback& callback) override;
|
| virtual void RenameAndAnnotate(
|
| const base::FilePath& full_path,
|
| - const RenameCompletionCallback& callback) OVERRIDE;
|
| - virtual void Detach() OVERRIDE;
|
| - virtual void Cancel() OVERRIDE;
|
| - virtual base::FilePath FullPath() const OVERRIDE;
|
| - virtual bool InProgress() const OVERRIDE;
|
| - virtual int64 CurrentSpeed() const OVERRIDE;
|
| - virtual bool GetHash(std::string* hash) OVERRIDE;
|
| - virtual std::string GetHashState() OVERRIDE;
|
| - virtual void SetClientGuid(const std::string& guid) OVERRIDE;
|
| + const RenameCompletionCallback& callback) override;
|
| + virtual void Detach() override;
|
| + virtual void Cancel() override;
|
| + virtual base::FilePath FullPath() const override;
|
| + virtual bool InProgress() const override;
|
| + virtual int64 CurrentSpeed() const override;
|
| + virtual bool GetHash(std::string* hash) override;
|
| + virtual std::string GetHashState() override;
|
| + virtual void SetClientGuid(const std::string& guid) override;
|
|
|
| protected:
|
| // For test class overrides.
|
|
|