| Index: chrome/browser/plugins/plugin_installer.h
|
| diff --git a/chrome/browser/plugins/plugin_installer.h b/chrome/browser/plugins/plugin_installer.h
|
| index 06ffaf43305c678408a139806333aeb5a1890a11..7095daf41a72c7a1c1a14cd16d9f8d85dc2cd484 100644
|
| --- a/chrome/browser/plugins/plugin_installer.h
|
| +++ b/chrome/browser/plugins/plugin_installer.h
|
| @@ -31,10 +31,10 @@ class PluginInstaller : public content::DownloadItem::Observer {
|
| };
|
|
|
| PluginInstaller();
|
| - virtual ~PluginInstaller();
|
| + ~PluginInstaller() override;
|
|
|
| - virtual void OnDownloadUpdated(content::DownloadItem* download) override;
|
| - virtual void OnDownloadDestroyed(content::DownloadItem* download) override;
|
| + void OnDownloadUpdated(content::DownloadItem* download) override;
|
| + void OnDownloadDestroyed(content::DownloadItem* download) override;
|
|
|
| void AddObserver(PluginInstallerObserver* observer);
|
| void RemoveObserver(PluginInstallerObserver* observer);
|
|
|