summaryrefslogtreecommitdiffstats
path: root/src/com/android/browser/PageDialogsHandler.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/browser/PageDialogsHandler.java')
-rw-r--r--src/com/android/browser/PageDialogsHandler.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/com/android/browser/PageDialogsHandler.java b/src/com/android/browser/PageDialogsHandler.java
index 3ed1004..dba5289 100644
--- a/src/com/android/browser/PageDialogsHandler.java
+++ b/src/com/android/browser/PageDialogsHandler.java
@@ -27,7 +27,6 @@ import android.view.View;
import android.webkit.HttpAuthHandler;
import android.webkit.SslErrorHandler;
import android.webkit.WebView;
-import android.webkit.WebViewClassic;
import android.widget.LinearLayout;
import android.widget.TextView;
@@ -298,7 +297,7 @@ public class PageDialogsHandler {
mSSLCertificateOnErrorHandler = null;
mSSLCertificateOnErrorError = null;
- WebViewClassic.fromWebView(view).getWebViewClient().
+ ((BrowserWebView) view).getWebViewClient().
onReceivedSslError(view, handler, error);
}
})
@@ -326,7 +325,7 @@ public class PageDialogsHandler {
mSSLCertificateOnErrorHandler = null;
mSSLCertificateOnErrorError = null;
- WebViewClassic.fromWebView(view).getWebViewClient().
+ ((BrowserWebView) view).getWebViewClient().
onReceivedSslError(view, handler, error);
}
})