| Index: chrome/browser/component_updater/swiftshader_component_installer.cc
|
| diff --git a/chrome/browser/component_updater/swiftshader_component_installer.cc b/chrome/browser/component_updater/swiftshader_component_installer.cc
|
| index 07f527d55b08ab53c1cecd287e425e866b80d408..cd00273d7d1b7a12774d15aa8694a30a0472e77e 100644
|
| --- a/chrome/browser/component_updater/swiftshader_component_installer.cc
|
| +++ b/chrome/browser/component_updater/swiftshader_component_installer.cc
|
| @@ -101,13 +101,13 @@ class SwiftShaderComponentInstaller : public ComponentInstaller {
|
|
|
| virtual ~SwiftShaderComponentInstaller() {}
|
|
|
| - 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;
|
|
|
| private:
|
| Version current_version_;
|
| @@ -179,7 +179,7 @@ class UpdateChecker : public content::GpuDataManagerObserver {
|
| public:
|
| explicit UpdateChecker(ComponentUpdateService* cus);
|
|
|
| - virtual void OnGpuInfoUpdate() OVERRIDE;
|
| + virtual void OnGpuInfoUpdate() override;
|
|
|
| private:
|
| ComponentUpdateService* cus_;
|
|
|