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

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

Issue 2661113003: Skeleton mechanical impl. for the RecoveryImprovedComponent. (Closed)
Patch Set: . Created 3 years, 11 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/chrome_component_updater_configurator.cc
diff --git a/chrome/browser/component_updater/chrome_component_updater_configurator.cc b/chrome/browser/component_updater/chrome_component_updater_configurator.cc
index 2fccab7600c25f879debd3408cc1d674928a4498..ea3512817d1d3cf2aaf9fae7c2bee9bf5a3cb0a5 100644
--- a/chrome/browser/component_updater/chrome_component_updater_configurator.cc
+++ b/chrome/browser/component_updater/chrome_component_updater_configurator.cc
@@ -62,6 +62,7 @@ class ChromeConfigurator : public update_client::Configurator {
bool EnabledComponentUpdates() const override;
bool EnabledBackgroundDownloader() const override;
bool EnabledCupSigning() const override;
+ bool EnabledImprovedRecovery() const override;
scoped_refptr<base::SequencedTaskRunner> GetSequencedTaskRunner()
const override;
PrefService* GetPrefService() const override;
@@ -185,6 +186,10 @@ bool ChromeConfigurator::EnabledCupSigning() const {
return configurator_impl_.EnabledCupSigning();
}
+bool ChromeConfigurator::EnabledImprovedRecovery() const {
+ return configurator_impl_.EnabledImprovedRecovery();
+}
+
// Returns a task runner to run blocking tasks. The task runner continues to run
// after the browser shuts down, until the OS terminates the process. This
// imposes certain requirements for the code using the task runner, such as

Powered by Google App Engine
This is Rietveld 408576698