| 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.
|
|
|