| Index: components/data_reduction_proxy/core/common/data_reduction_proxy_params_test_utils.h
|
| diff --git a/components/data_reduction_proxy/core/common/data_reduction_proxy_params_test_utils.h b/components/data_reduction_proxy/core/common/data_reduction_proxy_params_test_utils.h
|
| index 83c7c64d50ee78232c20f31b0d8423a5eb25ae35..90963646724c4b8b88c5c9c1ca25b00cb779aa6a 100644
|
| --- a/components/data_reduction_proxy/core/common/data_reduction_proxy_params_test_utils.h
|
| +++ b/components/data_reduction_proxy/core/common/data_reduction_proxy_params_test_utils.h
|
| @@ -26,12 +26,10 @@ class TestDataReductionProxyParams : public DataReductionProxyParams {
|
| // Used to emulate having constants defined by the preprocessor.
|
| enum HasNames {
|
| HAS_NOTHING = 0x0,
|
| - HAS_DEV_ORIGIN = 0x1,
|
| HAS_ORIGIN = 0x2,
|
| HAS_FALLBACK_ORIGIN = 0x4,
|
| HAS_SSL_ORIGIN = 0x08,
|
| HAS_SECURE_PROXY_CHECK_URL = 0x40,
|
| - HAS_DEV_FALLBACK_ORIGIN = 0x80,
|
| HAS_EVERYTHING = 0xff,
|
| };
|
|
|
| @@ -42,8 +40,6 @@ class TestDataReductionProxyParams : public DataReductionProxyParams {
|
| void SetProxiesForHttp(const std::vector<net::ProxyServer>& proxies);
|
|
|
| // Test values to replace the values specified in preprocessor defines.
|
| - static std::string DefaultDevOrigin();
|
| - static std::string DefaultDevFallbackOrigin();
|
| static std::string DefaultOrigin();
|
| static std::string DefaultFallbackOrigin();
|
| static std::string DefaultSSLOrigin();
|
| @@ -55,10 +51,6 @@ class TestDataReductionProxyParams : public DataReductionProxyParams {
|
| static std::string FlagSecureProxyCheckURL();
|
|
|
| protected:
|
| - std::string GetDefaultDevOrigin() const override;
|
| -
|
| - std::string GetDefaultDevFallbackOrigin() const override;
|
| -
|
| std::string GetDefaultOrigin() const override;
|
|
|
| std::string GetDefaultFallbackOrigin() const override;
|
|
|