Home | History | Annotate | Download | only in browser

Lines Matching defs:webView

63 import android.webkit.WebView;
64 import android.webkit.WebView.PictureListener;
88 * Class for maintaining Tabs with a main WebView and a subwindow.
136 // Main WebView wrapper
138 // Main WebView
139 private WebView mMainView;
142 // Subwindow WebView
143 private WebView mSubView;
145 // information needed to restore the WebView if the user goes back to the
169 // Keep the original url around to avoid killing the old WebView if the url
324 // WebViewClient implementation for the main WebView
338 public void onPageStarted(WebView view, String url, Bitmap favicon) {
376 public void onPageFinished(WebView view, String url) {
388 public boolean shouldOverrideUrlLoading(WebView view, String url) {
405 public void onLoadResource(WebView view, String url) {
424 public void onReceivedError(WebView view, int errorCode,
446 public void onFormResubmission(WebView view, final Message dontResend,
501 public void doUpdateVisitedHistory(WebView view, String url,
510 public void onReceivedSslError(final WebView view,
565 * WebView but chose to proceed anyway based on a decision retained
570 public void onProceededAfterSslError(WebView view, SslError error) {
578 public void onReceivedClientCertRequest(final WebView view,
620 public void onReceivedHttpAuthRequest(WebView view,
627 public WebResourceResponse shouldInterceptRequest(WebView view,
635 public boolean shouldOverrideKeyEvent(WebView view, KeyEvent event) {
643 public void onUnhandledKeyEvent(WebView view, KeyEvent event) {
653 public void onReceivedLoginRequest(WebView view, String realm,
661 private void syncCurrentState(WebView view, String url) {
691 // WebChromeClient implementation for the main WebView
697 WebView.WebViewTransport transport =
698 (WebView.WebViewTransport) msg.obj;
712 public boolean onCreateWindow(WebView view, final boolean dialog,
752 // Block the popup by returning a null WebView.
776 public void onRequestFocus(WebView view) {
783 public void onCloseWindow(WebView window) {
794 public void onProgressChanged(WebView view, int newProgress) {
806 public void onReceivedTitle(WebView view, final String title) {
812 public void onReceivedIcon(WebView view, Bitmap icon) {
818 public void onReceivedTouchIconUrl(WebView view, String url,
1050 // WebViewClient of certain WebView activities.
1061 public void onPageStarted(WebView view, String url, Bitmap favicon) {
1068 public void doUpdateVisitedHistory(WebView view, String url,
1073 public boolean shouldOverrideUrlLoading(WebView view, String url) {
1077 public void onReceivedSslError(WebView view, SslErrorHandler handler,
1082 public void onReceivedClientCertRequest(WebView view,
1087 public void onReceivedHttpAuthRequest(WebView view,
1092 public void onFormResubmission(WebView view, Message dontResend,
1097 public void onReceivedError(WebView view, int errorCode,
1102 public boolean shouldOverrideKeyEvent(WebView view,
1107 public void onUnhandledKeyEvent(WebView view,
1125 public void onProgressChanged(WebView view, int newProgress) {
1129 public boolean onCreateWindow(WebView view, boolean dialog,
1134 public void onCloseWindow(WebView window) {
1145 Tab(WebViewController wvcontroller, WebView w) {
1153 Tab(WebViewController wvcontroller, WebView w, Bundle state) {
1256 void setWebView(WebView w) {
1261 * Sets the WebView for this tab, correctly removing the old WebView from
1264 void setWebView(WebView w, boolean restore) {
1269 // If the WebView is changing, the page will be reloaded, so any ongoing
1308 Log.w(LOGTAG, "Failed to restore WebView state!");
1317 * Destroy the tab's main WebView and subWindow if any
1322 // save the WebView to call destroy() after detach it from the tab
1323 WebView webView = mMainView;
1325 webView.destroy();
1411 // Sync the WebView useragent with the parent
1517 WebView getTopWindow() {
1528 * @return The main WebView of this tab.
1530 WebView getWebView() {
1537 * @return The main WebView of this tab.
1567 WebView getSubWebView() {
1571 void setSubWebView(WebView subView) {
1715 // If the WebView is null it means we ran low on memory and we already
1757 // Restore the internal state even if the WebView fails to restore.
1948 public void onNewPicture(WebView view, Picture picture) {