| Index: components/update_client/test_configurator.h
|
| diff --git a/components/update_client/test_configurator.h b/components/update_client/test_configurator.h
|
| index 2aa5ff2ad7735c014bd7fdee44019ec7ffa9867b..e4c72f2ae866621e0ea254e6a2b85c49cc240e7d 100644
|
| --- a/components/update_client/test_configurator.h
|
| +++ b/components/update_client/test_configurator.h
|
| @@ -73,12 +73,14 @@ class TestConfigurator : public Configurator {
|
| scoped_refptr<OutOfProcessPatcher> CreateOutOfProcessPatcher() const override;
|
| bool DeltasEnabled() const override;
|
| bool UseBackgroundDownloader() const override;
|
| + bool UseCupSigning() const override;
|
| scoped_refptr<base::SequencedTaskRunner> GetSequencedTaskRunner()
|
| const override;
|
|
|
| void SetOnDemandTime(int seconds);
|
| void SetInitialDelay(int seconds);
|
| void SetDownloadPreference(const std::string& download_preference);
|
| + void SetUseCupSigning(bool use_cup_signing);
|
|
|
| private:
|
| friend class base::RefCountedThreadSafe<TestConfigurator>;
|
| @@ -90,6 +92,7 @@ class TestConfigurator : public Configurator {
|
| int initial_time_;
|
| int ondemand_time_;
|
| std::string download_preference_;
|
| + bool use_cup_signing_;
|
|
|
| scoped_refptr<net::TestURLRequestContextGetter> context_;
|
|
|
|
|