| Index: chrome/browser/component_updater/pepper_flash_component_installer.cc
|
| diff --git a/chrome/browser/component_updater/pepper_flash_component_installer.cc b/chrome/browser/component_updater/pepper_flash_component_installer.cc
|
| index 79c768304a449bee2d044aa544370534dc0348a8..c7ec020c875b964897e0d5e8d4c0b29dfee8f54f 100644
|
| --- a/chrome/browser/component_updater/pepper_flash_component_installer.cc
|
| +++ b/chrome/browser/component_updater/pepper_flash_component_installer.cc
|
| @@ -334,15 +334,15 @@ class PepperFlashComponentInstaller : public ComponentInstaller {
|
| public:
|
| explicit PepperFlashComponentInstaller(const Version& version);
|
|
|
| - virtual ~PepperFlashComponentInstaller() {}
|
| + ~PepperFlashComponentInstaller() override {}
|
|
|
| - virtual void OnUpdateError(int error) override;
|
| + void OnUpdateError(int error) override;
|
|
|
| - virtual bool Install(const base::DictionaryValue& manifest,
|
| - const base::FilePath& unpack_path) override;
|
| + bool Install(const base::DictionaryValue& manifest,
|
| + const base::FilePath& unpack_path) override;
|
|
|
| - virtual bool GetInstalledFile(const std::string& file,
|
| - base::FilePath* installed_file) override;
|
| + bool GetInstalledFile(const std::string& file,
|
| + base::FilePath* installed_file) override;
|
|
|
| private:
|
| Version current_version_;
|
|
|