| 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
|
|
|