Index: chrome/browser/component_updater/pepper_flash_component_installer.cc |
diff --git a/chrome/browser/component_updater/pepper_flash_component_installer.cc b/chrome/browser/component_updater/pepper_flash_component_installer.cc |
index 70219e9da14c187f998ad725cddcb159de374de7..7b843e200d1bc9f5146e39bb7a6604d352a2afaa 100644 |
--- a/chrome/browser/component_updater/pepper_flash_component_installer.cc |
+++ b/chrome/browser/component_updater/pepper_flash_component_installer.cc |
@@ -341,6 +341,9 @@ class PepperFlashComponentInstaller : public ComponentInstaller { |
virtual bool Install(const base::DictionaryValue& manifest, |
const base::FilePath& unpack_path) OVERRIDE; |
+ virtual void OnInstallError( |
+ const InstallerSourceSerializer& serializer) OVERRIDE; |
+ |
virtual bool GetInstalledFile(const std::string& file, |
base::FilePath* installed_file) OVERRIDE; |
@@ -387,6 +390,10 @@ bool PepperFlashComponentInstaller::Install( |
return true; |
} |
+void PepperFlashComponentInstaller::OnInstallError( |
+ const InstallerSourceSerializer& serializer) { |
+} |
+ |
bool PepperFlashComponentInstaller::GetInstalledFile( |
const std::string& file, |
base::FilePath* installed_file) { |