| Index: chrome/browser/component_updater/ev_whitelist_component_installer.h
|
| diff --git a/chrome/browser/component_updater/ev_whitelist_component_installer.h b/chrome/browser/component_updater/ev_whitelist_component_installer.h
|
| index 1bc08eed705d2f2167f047cb7eedf3fac0061dda..441a16ba9a7a8c124658cfaee3ae93ea20e732d8 100644
|
| --- a/chrome/browser/component_updater/ev_whitelist_component_installer.h
|
| +++ b/chrome/browser/component_updater/ev_whitelist_component_installer.h
|
| @@ -21,23 +21,21 @@ class ComponentUpdateService;
|
| class EVWhitelistComponentInstallerTraits : public ComponentInstallerTraits {
|
| public:
|
| EVWhitelistComponentInstallerTraits();
|
| - virtual ~EVWhitelistComponentInstallerTraits() {}
|
| + ~EVWhitelistComponentInstallerTraits() override {}
|
|
|
| private:
|
| // The following methods override ComponentInstallerTraits.
|
| - virtual bool CanAutoUpdate() const override;
|
| - virtual bool OnCustomInstall(const base::DictionaryValue& manifest,
|
| - const base::FilePath& install_dir) override;
|
| - virtual bool VerifyInstallation(
|
| - const base::DictionaryValue& manifest,
|
| - const base::FilePath& install_dir) const override;
|
| - virtual void ComponentReady(
|
| - const base::Version& version,
|
| - const base::FilePath& path,
|
| - scoped_ptr<base::DictionaryValue> manifest) override;
|
| - virtual base::FilePath GetBaseDirectory() const override;
|
| - virtual void GetHash(std::vector<uint8_t>* hash) const override;
|
| - virtual std::string GetName() const override;
|
| + bool CanAutoUpdate() const override;
|
| + bool OnCustomInstall(const base::DictionaryValue& manifest,
|
| + const base::FilePath& install_dir) override;
|
| + bool VerifyInstallation(const base::DictionaryValue& manifest,
|
| + const base::FilePath& install_dir) const override;
|
| + void ComponentReady(const base::Version& version,
|
| + const base::FilePath& path,
|
| + scoped_ptr<base::DictionaryValue> manifest) override;
|
| + base::FilePath GetBaseDirectory() const override;
|
| + void GetHash(std::vector<uint8_t>* hash) const override;
|
| + std::string GetName() const override;
|
|
|
| static base::FilePath GetInstalledPath(const base::FilePath& base);
|
|
|
|
|