diff options
author | mohan.reddy <mohan.reddy@samsung.com> | 2014-10-07 09:17:38 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-07 16:17:58 +0000 |
commit | 0673e938d521ab5cfe49536dc1109a7210f954fb (patch) | |
tree | ae70c1ce41581187f77070b12173d98efa0564ef /content/browser/download/download_file_impl.h | |
parent | c21b6380980f702cb16306f04c394ba7798e2e81 (diff) | |
download | chromium_src-0673e938d521ab5cfe49536dc1109a7210f954fb.zip chromium_src-0673e938d521ab5cfe49536dc1109a7210f954fb.tar.gz chromium_src-0673e938d521ab5cfe49536dc1109a7210f954fb.tar.bz2 |
Replacing the OVERRIDE with override and FINAL with final in content/browser/geolocation/[download|loader|quota]
This step is a giant search and replace for OVERRIDE and FINAL to
replace them with their lowercase versions.
BUG=417463
Review URL: https://codereview.chromium.org/638503002
Cr-Commit-Position: refs/heads/master@{#298496}
Diffstat (limited to 'content/browser/download/download_file_impl.h')
-rw-r--r-- | content/browser/download/download_file_impl.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/content/browser/download/download_file_impl.h b/content/browser/download/download_file_impl.h index f7950ee..7326665 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. |