Chromium Code Reviews| Index: ios/chrome/browser/component_updater/ios_component_updater_configurator.cc |
| diff --git a/ios/chrome/browser/component_updater/ios_component_updater_configurator.cc b/ios/chrome/browser/component_updater/ios_component_updater_configurator.cc |
| index 03f11913128e626c571cb835afb886ca01ff31eb..3977f665c3228ca95afa6090e96918421a208c96 100644 |
| --- a/ios/chrome/browser/component_updater/ios_component_updater_configurator.cc |
| +++ b/ios/chrome/browser/component_updater/ios_component_updater_configurator.cc |
| @@ -43,9 +43,10 @@ class IOSConfigurator : public update_client::Configurator { |
| net::URLRequestContextGetter* RequestContext() const override; |
| scoped_refptr<update_client::OutOfProcessPatcher> CreateOutOfProcessPatcher() |
| const override; |
| - bool DeltasEnabled() const override; |
| - bool UseBackgroundDownloader() const override; |
| - bool UseCupSigning() const override; |
| + bool EnabledDeltas() const override; |
| + bool EnabledComponentUpdates() const override; |
| + bool EnabledBackgroundDownloader() const override; |
| + bool EnabledCupSigning() const override; |
| scoped_refptr<base::SequencedTaskRunner> GetSequencedTaskRunner() |
| const override; |
| PrefService* GetPrefService() const override; |
| @@ -133,16 +134,20 @@ IOSConfigurator::CreateOutOfProcessPatcher() const { |
| return nullptr; |
| } |
| -bool IOSConfigurator::DeltasEnabled() const { |
| - return configurator_impl_.DeltasEnabled(); |
| +bool IOSConfigurator::EnabledDeltas() const { |
| + return configurator_impl_.EnabledDeltas(); |
| } |
| -bool IOSConfigurator::UseBackgroundDownloader() const { |
| - return configurator_impl_.UseBackgroundDownloader(); |
| +bool IOSConfigurator::EnabledComponentUpdates() const { |
| + return configurator_impl_.EnabledBackgroundDownloader(); |
|
rohitrao (ping after 24h)
2016/08/02 20:17:37
Should this be calling configurator_impl_.EnabledC
Sorin Jianu
2016/08/02 20:24:38
Yes. Thank you!
|
| } |
| -bool IOSConfigurator::UseCupSigning() const { |
| - return configurator_impl_.UseCupSigning(); |
| +bool IOSConfigurator::EnabledBackgroundDownloader() const { |
| + return configurator_impl_.EnabledBackgroundDownloader(); |
| +} |
| + |
| +bool IOSConfigurator::EnabledCupSigning() const { |
| + return configurator_impl_.EnabledCupSigning(); |
| } |
| scoped_refptr<base::SequencedTaskRunner> |