Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1040)

Unified Diff: chrome/browser/component_updater/recovery_component_installer.cc

Issue 15908002: Differential updates for components. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/component_updater/recovery_component_installer.cc
===================================================================
--- chrome/browser/component_updater/recovery_component_installer.cc (revision 201835)
+++ chrome/browser/component_updater/recovery_component_installer.cc (working copy)
@@ -56,6 +56,9 @@
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_;
PrefService* prefs_;
@@ -130,6 +133,11 @@
return base::LaunchProcess(cmdline, base::LaunchOptions(), NULL);
}
+bool RecoveryComponentInstaller::GetInstalledFile(
+ const std::string& file, base::FilePath* installed_file) {
+ return false;
+}
+
void RegisterRecoveryComponent(ComponentUpdateService* cus,
PrefService* prefs) {
#if !defined(OS_CHROMEOS)

Powered by Google App Engine
This is Rietveld 408576698