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