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 696c6d9ec4dcf542a95d90e33d47c9cbbe8984d2..009afa0245e4a11b02a2bb3e91208746c9319dff 100644 |
--- a/chrome/browser/component_updater/pepper_flash_component_installer.cc |
+++ b/chrome/browser/component_updater/pepper_flash_component_installer.cc |
@@ -250,6 +250,9 @@ class PepperFlashComponentInstaller : public ComponentInstaller { |
virtual bool Install(const base::DictionaryValue& manifest, |
const base::FilePath& unpack_path) OVERRIDE; |
+ virtual bool GetInstalledFile(const std::string& file, |
+ base::FilePath* installed_file) OVERRIDE; |
+ |
private: |
Version current_version_; |
}; |
@@ -292,6 +295,11 @@ bool PepperFlashComponentInstaller::Install( |
return true; |
} |
+bool PepperFlashComponentInstaller::GetInstalledFile( |
+ const std::string& file, base::FilePath* installed_file) { |
+ return false; |
+} |
+ |
bool CheckPepperFlashManifest(const base::DictionaryValue& manifest, |
Version* version_out) { |
std::string name; |