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

Unified Diff: components/cronet/android/api/src/org/chromium/net/ExperimentalCronetEngine.java

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
Index: components/cronet/android/api/src/org/chromium/net/ExperimentalCronetEngine.java
diff --git a/components/cronet/android/api/src/org/chromium/net/ExperimentalCronetEngine.java b/components/cronet/android/api/src/org/chromium/net/ExperimentalCronetEngine.java
index cdf54bc19d7a8359e8401c21720973f6ece077de..0168249cf1cd4319cb5ac660aad5e91395cf91b0 100644
--- a/components/cronet/android/api/src/org/chromium/net/ExperimentalCronetEngine.java
+++ b/components/cronet/android/api/src/org/chromium/net/ExperimentalCronetEngine.java
@@ -139,37 +139,6 @@ public abstract class ExperimentalCronetEngine extends CronetEngine {
}
/**
- * Overrides
- * <a href="https://developer.chrome.com/multidevice/data-compression">
- * Data Reduction Proxy</a> configuration parameters with a primary
- * proxy name, fallback proxy name, and a secure proxy check URL. Proxies
- * are specified as [scheme://]host[:port]. Used for testing.
- * @param primaryProxy the primary data reduction proxy to use.
- * @param fallbackProxy a fallback data reduction proxy to use.
- * @param secureProxyCheckUrl a URL to fetch to determine if using a secure
- * proxy is allowed.
- * @return the builder to facilitate chaining.
- */
- public Builder setDataReductionProxyOptions(
- String primaryProxy, String fallbackProxy, String secureProxyCheckUrl) {
- mBuilderDelegate.setDataReductionProxyOptions(
- primaryProxy, fallbackProxy, secureProxyCheckUrl);
- return this;
- }
-
- /**
- * Enables
- * <a href="https://developer.chrome.com/multidevice/data-compression">Data
- * Reduction Proxy</a>. Defaults to disabled.
- * @param key key to use when authenticating with the proxy.
- * @return the builder to facilitate chaining.
- */
- public Builder enableDataReductionProxy(String key) {
- mBuilderDelegate.enableDataReductionProxy(key);
- return this;
- }
-
- /**
* Sets experimental options to be used in Cronet.
*
* @param options JSON formatted experimental options.
« no previous file with comments | « components/cronet/android/api.txt ('k') | components/cronet/android/api/src/org/chromium/net/ICronetEngineBuilder.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698