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

Unified Diff: ios/chrome/browser/component_updater/ios_component_updater_configurator.cc

Issue 2199423002: Mechanical change in the component updater Configurator. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 4 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
« no previous file with comments | « components/update_client/update_client.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..b4070bd7d8db05cf83ef08a2a296ae9f2c3c5e79 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_.EnabledComponentUpdates();
}
-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>
« no previous file with comments | « components/update_client/update_client.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698