Lines Matching full:webview
62 import android.webkit.WebView;
63 import android.webkit.WebView.PictureListener;
86 * 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,
571 public void onReceivedHttpAuthRequest(WebView view,
578 public WebResourceResponse shouldInterceptRequest(WebView view,
604 public boolean shouldOverrideKeyEvent(WebView view, KeyEvent event) {
612 public void onUnhandledKeyEvent(WebView view, KeyEvent event) {
622 public void onReceivedLoginRequest(WebView view, String realm,
630 private void syncCurrentState(WebView view, String url) {
660 // WebChromeClient implementation for the main WebView
666 WebView.WebViewTransport transport =
667 (WebView.WebViewTransport) msg.obj;
681 public boolean onCreateWindow(WebView view, final boolean dialog,
721 // Block the popup by returning a null WebView.
745 public void onRequestFocus(WebView view) {
752 public void onCloseWindow(WebView window) {
763 public void onProgressChanged(WebView view, int newProgress) {
775 public void onReceivedTitle(WebView view, final String title) {
781 public void onReceivedIcon(WebView view, Bitmap icon) {
787 public void onReceivedTouchIconUrl(WebView view, String url,
986 // WebViewClient of certain WebView activities.
997 public void onPageStarted(WebView view, String url, Bitmap favicon) {
1004 public void doUpdateVisitedHistory(WebView view, String url,
1009 public boolean shouldOverrideUrlLoading(WebView view, String url) {
1013 public void onReceivedSslError(WebView view, SslErrorHandler handler,
1018 public void onReceivedHttpAuthRequest(WebView view,
1023 public void onFormResubmission(WebView view, Message dontResend,
1028 public void onReceivedError(WebView view, int errorCode,
1033 public boolean shouldOverrideKeyEvent(WebView view,
1038 public void onUnhandledKeyEvent(WebView view,
1056 public void onProgressChanged(WebView view, int newProgress) {
1060 public boolean onCreateWindow(WebView view, boolean dialog,
1065 public void onCloseWindow(WebView window) {
1076 Tab(WebViewController wvcontroller, WebView w) {
1084 Tab(WebViewController wvcontroller, WebView w, Bundle state) {
1187 void setWebView(WebView w) {
1192 * Sets the WebView for this tab, correctly removing the old WebView from
1195 void setWebView(WebView w, boolean restore) {
1200 // If the WebView is changing, the page will be reloaded, so any ongoing
1236 Log.w(LOGTAG, "Failed to restore WebView state!");
1245 * Destroy the tab's main WebView and subWindow if any
1250 // save the WebView to call destroy() after detach it from the tab
1251 WebView webView = mMainView;
1253 webView.destroy();
1339 // Sync the WebView useragent with the parent
1445 WebView getTopWindow() {
1456 * @return The main WebView of this tab.
1458 WebView getWebView() {
1483 WebView getSubWebView() {
1487 void setSubWebView(WebView subView) {
1631 // If the WebView is null it means we ran low on memory and we already
1673 // Restore the internal state even if the WebView fails to restore.
1815 public void onNewPicture(WebView view, Picture picture) {