diff options
Diffstat (limited to 'chrome/browser/plugin_installer_observer.cc')
-rw-r--r-- | chrome/browser/plugin_installer_observer.cc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/chrome/browser/plugin_installer_observer.cc b/chrome/browser/plugin_installer_observer.cc index 419f60e..32cba97 100644 --- a/chrome/browser/plugin_installer_observer.cc +++ b/chrome/browser/plugin_installer_observer.cc @@ -15,15 +15,18 @@ PluginInstallerObserver::~PluginInstallerObserver() { installer_->RemoveObserver(this); } -void PluginInstallerObserver::DidStartDownload() { +void PluginInstallerObserver::DownloadStarted() { } -void PluginInstallerObserver::DidFinishDownload() { +void PluginInstallerObserver::DownloadFinished() { } void PluginInstallerObserver::DownloadError(const std::string& message) { } +void PluginInstallerObserver::DownloadCancelled() { +} + WeakPluginInstallerObserver::WeakPluginInstallerObserver( PluginInstaller* installer) : PluginInstallerObserver(installer) { installer->AddWeakObserver(this); |