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

Unified Diff: chrome/browser/component_updater/chrome_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 | « no previous file | chrome/browser/component_updater/chrome_component_updater_configurator_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 dd32dad332749c2b37d0450aad3110cacc13122c..fb5832cf306ba6ad7e0e9d06015f04a602a3f857 100644
--- a/chrome/browser/component_updater/chrome_component_updater_configurator.cc
+++ b/chrome/browser/component_updater/chrome_component_updater_configurator.cc
@@ -52,9 +52,10 @@ class ChromeConfigurator : 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;
@@ -151,16 +152,20 @@ ChromeConfigurator::CreateOutOfProcessPatcher() const {
return make_scoped_refptr(new ChromeOutOfProcessPatcher);
}
-bool ChromeConfigurator::DeltasEnabled() const {
- return configurator_impl_.DeltasEnabled();
+bool ChromeConfigurator::EnabledDeltas() const {
+ return configurator_impl_.EnabledDeltas();
}
-bool ChromeConfigurator::UseBackgroundDownloader() const {
- return configurator_impl_.UseBackgroundDownloader();
+bool ChromeConfigurator::EnabledComponentUpdates() const {
+ return configurator_impl_.EnabledComponentUpdates();
}
-bool ChromeConfigurator::UseCupSigning() const {
- return configurator_impl_.UseCupSigning();
+bool ChromeConfigurator::EnabledBackgroundDownloader() const {
+ return configurator_impl_.EnabledBackgroundDownloader();
+}
+
+bool ChromeConfigurator::EnabledCupSigning() const {
+ return configurator_impl_.EnabledCupSigning();
}
// Returns a task runner to run blocking tasks. The task runner continues to run
« no previous file with comments | « no previous file | chrome/browser/component_updater/chrome_component_updater_configurator_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698