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

Unified Diff: chrome/browser/extensions/updater/chrome_update_client_config.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
Index: chrome/browser/extensions/updater/chrome_update_client_config.cc
diff --git a/chrome/browser/extensions/updater/chrome_update_client_config.cc b/chrome/browser/extensions/updater/chrome_update_client_config.cc
index 7fe40423a4023c06484ec226f9fbce45596369e4..cd0ef215ba877f2c1cd184cdf6169f1f27b7b5a5 100644
--- a/chrome/browser/extensions/updater/chrome_update_client_config.cc
+++ b/chrome/browser/extensions/updater/chrome_update_client_config.cc
@@ -91,16 +91,20 @@ ChromeUpdateClientConfig::CreateOutOfProcessPatcher() const {
return make_scoped_refptr(new component_updater::ChromeOutOfProcessPatcher);
}
-bool ChromeUpdateClientConfig::DeltasEnabled() const {
- return impl_.DeltasEnabled();
+bool ChromeUpdateClientConfig::EnabledDeltas() const {
+ return impl_.EnabledDeltas();
}
-bool ChromeUpdateClientConfig::UseBackgroundDownloader() const {
- return impl_.UseBackgroundDownloader();
+bool ChromeUpdateClientConfig::EnabledComponentUpdates() const {
+ return impl_.EnabledComponentUpdates();
}
-bool ChromeUpdateClientConfig::UseCupSigning() const {
- return impl_.UseCupSigning();
+bool ChromeUpdateClientConfig::EnabledBackgroundDownloader() const {
+ return impl_.EnabledBackgroundDownloader();
+}
+
+bool ChromeUpdateClientConfig::EnabledCupSigning() const {
+ return impl_.EnabledCupSigning();
}
PrefService* ChromeUpdateClientConfig::GetPrefService() const {
« no previous file with comments | « chrome/browser/extensions/updater/chrome_update_client_config.h ('k') | components/component_updater/configurator_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698