android 6 support

This commit is contained in:
Vladimir Enchev
2015-10-28 11:55:34 +02:00
parent a5ff5fd8c2
commit 3230a570ab
2 changed files with 28 additions and 7 deletions

3
android17.d.ts vendored
View File

@@ -151344,7 +151344,8 @@ declare module android {
* @param description A String describing the error.
* @param failingUrl The url that failed to load.
*/
public onReceivedError(view: android.webkit.WebView, errorCode: number, description: string, failingUrl: string): void;
public onReceivedError(view: android.webkit.WebView, errorCode: number, description: string, failingUrl: string): void;
public onReceivedError(view: android.webkit.WebView, request, error): void;
/**
* As the host application if the browser should resend data as the requested page was a result of a POST. The default is to not resend the data.
* @param view The WebView that is initiating the callback.