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..427c2019c46e5fe523e9adf9236b8e5b58e7caff 100644 |
--- a/chrome/browser/component_updater/pepper_flash_component_installer.cc |
+++ b/chrome/browser/component_updater/pepper_flash_component_installer.cc |
@@ -341,6 +341,10 @@ class PepperFlashComponentInstaller : public ComponentInstaller { |
virtual bool Install(const base::DictionaryValue& manifest, |
const base::FilePath& unpack_path) OVERRIDE; |
+ virtual base::FilePath GetBackupPath() const OVERRIDE; |
+ |
+ virtual void InstallExternally() OVERRIDE; |
+ |
virtual bool GetInstalledFile(const std::string& file, |
base::FilePath* installed_file) OVERRIDE; |
@@ -387,6 +391,13 @@ bool PepperFlashComponentInstaller::Install( |
return true; |
} |
+base::FilePath PepperFlashComponentInstaller::GetBackupPath() const { |
+ return base::FilePath(); |
+} |
+ |
+void PepperFlashComponentInstaller::InstallExternally() { |
+} |
+ |
bool PepperFlashComponentInstaller::GetInstalledFile( |
const std::string& file, |
base::FilePath* installed_file) { |