Commit f2f8e8c2 authored by Paul Jensen's avatar Paul Jensen Committed by Commit Bot

[Cronet] Remove ICronetEngineBuilder.setCertVerifierData()

This API was entirely unused so it was allowed to be removed from the API
previously in crrev.com/571588. This CL cleans up the ICronetEngineBuilder
and api.txt references as they're no longer needed.  Removing an API
isn't normally allowed, so this required temporary modification of the
API update checks to rebuild api.txt.

Bug: 857693
Cq-Include-Trybots: master.tryserver.chromium.android:android_cronet_tester
Change-Id: I1bffb016f781aeb5116d8507245630dedacbb14b
Reviewed-on: https://chromium-review.googlesource.com/1148019Reviewed-by: default avatarMisha Efimov <mef@chromium.org>
Commit-Queue: Paul Jensen <pauljensen@chromium.org>
Cr-Commit-Position: refs/heads/master@{#583665}
parent 1aa23884
......@@ -112,7 +112,6 @@ public abstract class org.chromium.net.ICronetEngineBuilder {
public abstract java.lang.String getDefaultUserAgent();
public abstract org.chromium.net.ExperimentalCronetEngine build();
public org.chromium.net.ICronetEngineBuilder enableNetworkQualityEstimator(boolean);
public org.chromium.net.ICronetEngineBuilder setCertVerifierData(java.lang.String);
public org.chromium.net.ICronetEngineBuilder setThreadPriority(int);
}
public final class org.chromium.net.InlineExecutionProhibitedException extends java.util.concurrent.RejectedExecutionException {
......@@ -295,4 +294,4 @@ public abstract class org.chromium.net.UrlResponseInfo {
public abstract java.lang.String getProxyServer();
public abstract long getReceivedByteCount();
}
Stamp: f4909b6572d83edd28472e7087b0e6f2
Stamp: fadacc3f49758e52a33a1ae7f032ec97
......@@ -48,10 +48,6 @@ public abstract class ICronetEngineBuilder {
return this;
}
public ICronetEngineBuilder setCertVerifierData(String certVerifierData) {
return this;
}
public ICronetEngineBuilder setThreadPriority(int priority) {
return this;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment