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

Unified Diff: components/component_updater/test/test_installer.h

Issue 623133002: replace OVERRIDE and FINAL with override and final in components/ (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: components/component_updater/test/test_installer.h
diff --git a/components/component_updater/test/test_installer.h b/components/component_updater/test/test_installer.h
index 00b8c9be35bcfd8ace2d4d12ced001aabfc5752f..914b52ee6ef02d96335956a5ac1bd44b7c5f051f 100644
--- a/components/component_updater/test/test_installer.h
+++ b/components/component_updater/test/test_installer.h
@@ -23,13 +23,13 @@ class TestInstaller : public ComponentInstaller {
public:
TestInstaller();
- virtual void OnUpdateError(int error) OVERRIDE;
+ virtual void OnUpdateError(int error) override;
virtual bool Install(const base::DictionaryValue& manifest,
- const base::FilePath& unpack_path) OVERRIDE;
+ const base::FilePath& unpack_path) override;
virtual bool GetInstalledFile(const std::string& file,
- base::FilePath* installed_file) OVERRIDE;
+ base::FilePath* installed_file) override;
int error() const;
@@ -49,7 +49,7 @@ class ReadOnlyTestInstaller : public TestInstaller {
virtual ~ReadOnlyTestInstaller();
virtual bool GetInstalledFile(const std::string& file,
- base::FilePath* installed_file) OVERRIDE;
+ base::FilePath* installed_file) override;
private:
base::FilePath install_directory_;
@@ -64,10 +64,10 @@ class VersionedTestInstaller : public TestInstaller {
virtual ~VersionedTestInstaller();
virtual bool Install(const base::DictionaryValue& manifest,
- const base::FilePath& unpack_path) OVERRIDE;
+ const base::FilePath& unpack_path) override;
virtual bool GetInstalledFile(const std::string& file,
- base::FilePath* installed_file) OVERRIDE;
+ base::FilePath* installed_file) override;
private:
base::FilePath install_directory_;
« no previous file with comments | « components/component_updater/test/test_configurator.h ('k') | components/component_updater/test/update_checker_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698