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

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

Issue 1871783002: Remove the Data Reduction Proxy TLS experiment code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: tbansal comments 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 90963646724c4b8b88c5c9c1ca25b00cb779aa6a..bcaea2e189ed6686cb56f465cd4ee931fad9403f 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
@@ -28,7 +28,6 @@ class TestDataReductionProxyParams : public DataReductionProxyParams {
HAS_NOTHING = 0x0,
HAS_ORIGIN = 0x2,
HAS_FALLBACK_ORIGIN = 0x4,
- HAS_SSL_ORIGIN = 0x08,
HAS_SECURE_PROXY_CHECK_URL = 0x40,
HAS_EVERYTHING = 0xff,
};
@@ -42,12 +41,10 @@ class TestDataReductionProxyParams : public DataReductionProxyParams {
// Test values to replace the values specified in preprocessor defines.
static std::string DefaultOrigin();
static std::string DefaultFallbackOrigin();
- static std::string DefaultSSLOrigin();
static std::string DefaultSecureProxyCheckURL();
static std::string FlagOrigin();
static std::string FlagFallbackOrigin();
- static std::string FlagSSLOrigin();
static std::string FlagSecureProxyCheckURL();
protected:
@@ -55,8 +52,6 @@ class TestDataReductionProxyParams : public DataReductionProxyParams {
std::string GetDefaultFallbackOrigin() const override;
- std::string GetDefaultSSLOrigin() const override;
-
std::string GetDefaultSecureProxyCheckURL() const override;
private:

Powered by Google App Engine
This is Rietveld 408576698