| Index: components/update_client/test_configurator.h
|
| diff --git a/components/update_client/test_configurator.h b/components/update_client/test_configurator.h
|
| index 1f26ec051d223e159c6e7d3a4f311b5c342357d7..c2a2f91f79afbcc4e94929b82da87f957e051a06 100644
|
| --- a/components/update_client/test_configurator.h
|
| +++ b/components/update_client/test_configurator.h
|
| @@ -84,6 +84,7 @@ class TestConfigurator : public Configurator {
|
| const override;
|
| PrefService* GetPrefService() const override;
|
| bool IsPerUserInstall() const override;
|
| + PersistedData* CreateMetadata() const override;
|
|
|
| void SetBrand(const std::string& brand);
|
| void SetOnDemandTime(int seconds);
|
| @@ -93,6 +94,7 @@ class TestConfigurator : public Configurator {
|
| void SetEnabledComponentUpdates(bool enabled_component_updates);
|
| void SetUpdateCheckUrl(const GURL& url);
|
| void SetPingUrl(const GURL& url);
|
| + void SetPrefService(PrefService* pref);
|
|
|
| private:
|
| friend class base::RefCountedThreadSafe<TestConfigurator>;
|
| @@ -109,6 +111,7 @@ class TestConfigurator : public Configurator {
|
| bool enabled_component_updates_;
|
| GURL update_check_url_;
|
| GURL ping_url_;
|
| + PrefService* pref_;
|
|
|
| scoped_refptr<net::TestURLRequestContextGetter> context_;
|
|
|
|
|