Rename PacProcessor#makeProxyRequest to PacProcessor#findProxyForUrl.

This name corresponds to the name of PAC script function.

Bug: 148068051
Test: N/A
Change-Id: I722318988367d86d149ddd7d5020022f7734adff
This commit is contained in:
Anna Malova
2020-01-21 16:21:48 +00:00
parent 61415d9cef
commit 113d302b49
2 changed files with 2 additions and 2 deletions

View File

@@ -12837,8 +12837,8 @@ package android.webkit {
}
public interface PacProcessor {
method @Nullable public String findProxyForUrl(@NonNull String);
method @NonNull public static android.webkit.PacProcessor getInstance();
method @Nullable public String makeProxyRequest(@NonNull String);
method public boolean setProxyScript(@NonNull String);
}

View File

@@ -54,5 +54,5 @@ public interface PacProcessor {
* For example: "PROXY xxx.xxx.xxx.xxx:xx; SOCKS yyy.yyy.yyy:yy".
*/
@Nullable
String makeProxyRequest(@NonNull String url);
String findProxyForUrl(@NonNull String url);
}