Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(44)

Unified Diff: content/browser/download/download_file_impl.h

Issue 638503002: Replacing the OVERRIDE with override and FINAL with final in content/browser/[download|… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.
« no previous file with comments | « content/browser/download/download_browsertest.cc ('k') | content/browser/download/download_file_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698