This source file includes following definitions.
- JNINamespace
- getCacheMode
- shouldInterceptRequest
- shouldBlockContentUrls
- shouldBlockFileUrls
- shouldBlockNetworkLoads
- onDownloadStart
- newLoginRequest
package org.chromium.android_webview;
import org.chromium.base.CalledByNative;
import org.chromium.base.JNINamespace;
@JNINamespace("android_webview")
public interface AwContentsIoThreadClient {
@CalledByNative
public int getCacheMode();
@CalledByNative
public InterceptedRequestData shouldInterceptRequest(String url, boolean isMainFrame);
@CalledByNative
public boolean shouldBlockContentUrls();
@CalledByNative
public boolean shouldBlockFileUrls();
@CalledByNative
public boolean shouldBlockNetworkLoads();
@CalledByNative
public void onDownloadStart(String url, String userAgent,
String contentDisposition, String mimeType, long contentLength);
@CalledByNative
public void newLoginRequest(String realm, String account, String args);
}