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 cd00273d7d1b7a12774d15aa8694a30a0472e77e..e92fd0f18be9c18d717af8837224eb9378a41e0f 100644 |
--- a/chrome/browser/component_updater/swiftshader_component_installer.cc |
+++ b/chrome/browser/component_updater/swiftshader_component_installer.cc |
@@ -99,15 +99,15 @@ class SwiftShaderComponentInstaller : public ComponentInstaller { |
public: |
explicit SwiftShaderComponentInstaller(const Version& version); |
- virtual ~SwiftShaderComponentInstaller() {} |
+ ~SwiftShaderComponentInstaller() 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_; |
@@ -179,7 +179,7 @@ class UpdateChecker : public content::GpuDataManagerObserver { |
public: |
explicit UpdateChecker(ComponentUpdateService* cus); |
- virtual void OnGpuInfoUpdate() override; |
+ void OnGpuInfoUpdate() override; |
private: |
ComponentUpdateService* cus_; |