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

Unified Diff: components/cronet/url_request_context_config.h

Issue 2839413003: Delete Cronet Data Reduction Proxy integration (Closed)
Patch Set: Created 3 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
« no previous file with comments | « components/cronet/stale_host_resolver_unittest.cc ('k') | components/cronet/url_request_context_config.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/cronet/url_request_context_config.h
diff --git a/components/cronet/url_request_context_config.h b/components/cronet/url_request_context_config.h
index ce39823674a3df04444ce4439fe8e8a26c752ea7..6e55a92a29e665e6ed0626039ef1f67316ff76f2 100644
--- a/components/cronet/url_request_context_config.h
+++ b/components/cronet/url_request_context_config.h
@@ -102,14 +102,6 @@ struct URLRequestContextConfig {
const std::string& user_agent,
// JSON encoded experimental options.
const std::string& experimental_options,
- // Data reduction proxy key.
- const std::string& data_reduction_proxy_key,
- // Data reduction proxy.
- const std::string& data_reduction_primary_proxy,
- // Fallback data reduction proxy.
- const std::string& data_reduction_fallback_proxy,
- // Data reduction proxy secure proxy check URL.
- const std::string& data_reduction_secure_proxy_check_url,
// MockCertVerifier to use for testing purposes.
std::unique_ptr<net::CertVerifier> mock_cert_verifier,
// Enable network quality estimator.
@@ -154,11 +146,6 @@ struct URLRequestContextConfig {
// {"experiment1": {"option1": "option_value1", "option2": "option_value2",
// ...}, "experiment2: {"option3", "option_value3", ...}, ...}
const std::string experimental_options;
- // Enable Data Reduction Proxy with authentication key.
- const std::string data_reduction_proxy_key;
- const std::string data_reduction_primary_proxy;
- const std::string data_reduction_fallback_proxy;
- const std::string data_reduction_secure_proxy_check_url;
// Certificate verifier for testing.
std::unique_ptr<net::CertVerifier> mock_cert_verifier;
@@ -226,11 +213,6 @@ struct URLRequestContextConfigBuilder {
// {"experiment1": {"option1": "option_value1", "option2": "option_value2",
// ...}, "experiment2: {"option3", "option_value3", ...}, ...}
std::string experimental_options = "{}";
- // Enable Data Reduction Proxy with authentication key.
- std::string data_reduction_proxy_key = "";
- std::string data_reduction_primary_proxy = "";
- std::string data_reduction_fallback_proxy = "";
- std::string data_reduction_secure_proxy_check_url = "";
// Certificate verifier for testing.
std::unique_ptr<net::CertVerifier> mock_cert_verifier = nullptr;
« no previous file with comments | « components/cronet/stale_host_resolver_unittest.cc ('k') | components/cronet/url_request_context_config.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698