| Index: components/data_reduction_proxy/core/browser/data_reduction_proxy_settings_test_utils.h
|
| diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_settings_test_utils.h b/components/data_reduction_proxy/core/browser/data_reduction_proxy_settings_test_utils.h
|
| index 126e5bdb91ff801874a827819bb87d13b983ad8e..64698d3517af21a7e041802c4538f743f0409b74 100644
|
| --- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_settings_test_utils.h
|
| +++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_settings_test_utils.h
|
| @@ -27,15 +27,15 @@ class DataReductionProxyStatisticsPrefs;
|
| class TestDataReductionProxyConfig : public DataReductionProxyConfigurator {
|
| public:
|
| TestDataReductionProxyConfig();
|
| - virtual ~TestDataReductionProxyConfig() {}
|
| - virtual void Enable(bool restricted,
|
| - bool fallback_restricted,
|
| - const std::string& primary_origin,
|
| - const std::string& fallback_origin,
|
| - const std::string& ssl_origin) override;
|
| - virtual void Disable() override;
|
| - virtual void AddHostPatternToBypass(const std::string& pattern) override {}
|
| - virtual void AddURLPatternToBypass(const std::string& pattern) override {}
|
| + ~TestDataReductionProxyConfig() override {}
|
| + void Enable(bool restricted,
|
| + bool fallback_restricted,
|
| + const std::string& primary_origin,
|
| + const std::string& fallback_origin,
|
| + const std::string& ssl_origin) override;
|
| + void Disable() override;
|
| + void AddHostPatternToBypass(const std::string& pattern) override {}
|
| + void AddURLPatternToBypass(const std::string& pattern) override {}
|
|
|
| // True if the proxy has been enabled, i.e., only after |Enable| has been
|
| // called. Defaults to false.
|
|
|