| Index: components/update_client/test_configurator.cc
|
| diff --git a/components/update_client/test_configurator.cc b/components/update_client/test_configurator.cc
|
| index 1da523f8fc9dd75a7495ca156fcdc15d0f05ae9c..5e465084ddad222001dd9c9bd5bb928c8e289b5b 100644
|
| --- a/components/update_client/test_configurator.cc
|
| +++ b/components/update_client/test_configurator.cc
|
| @@ -107,15 +107,19 @@ scoped_refptr<OutOfProcessPatcher> TestConfigurator::CreateOutOfProcessPatcher()
|
| return NULL;
|
| }
|
|
|
| -bool TestConfigurator::DeltasEnabled() const {
|
| +bool TestConfigurator::EnabledDeltas() const {
|
| return true;
|
| }
|
|
|
| -bool TestConfigurator::UseBackgroundDownloader() const {
|
| +bool TestConfigurator::EnabledComponentUpdates() const {
|
| + return true;
|
| +}
|
| +
|
| +bool TestConfigurator::EnabledBackgroundDownloader() const {
|
| return false;
|
| }
|
|
|
| -bool TestConfigurator::UseCupSigning() const {
|
| +bool TestConfigurator::EnabledCupSigning() const {
|
| return use_cup_signing_;
|
| }
|
|
|
| @@ -131,7 +135,7 @@ void TestConfigurator::SetInitialDelay(int seconds) {
|
| initial_time_ = seconds;
|
| }
|
|
|
| -void TestConfigurator::SetUseCupSigning(bool use_cup_signing) {
|
| +void TestConfigurator::SetEnabledCupSigning(bool use_cup_signing) {
|
| use_cup_signing_ = use_cup_signing;
|
| }
|
|
|
|
|