| 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_;
|
|
|