Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(194)

Unified Diff: components/data_reduction_proxy/core/common/data_reduction_proxy_params_test_utils.h

Issue 1732213002: Remove DataCompressionProxyDevRollout experiment (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed nits Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698