Home | History | Annotate | Download | only in browser

Lines Matching full:view

22 import android.view.KeyEvent;
45 public boolean shouldOverrideUrlLoading(WebView view, String url) {
46 return mWrappedClient.shouldOverrideUrlLoading(view, url);
51 public void onPageStarted(WebView view, String url, Bitmap favicon) {
52 mWrappedClient.onPageStarted(view, url, favicon);
57 public void onPageFinished(WebView view, String url) {
58 mWrappedClient.onPageFinished(view, url);
63 public void onLoadResource(WebView view, String url) {
64 mWrappedClient.onLoadResource(view, url);
70 public void onTooManyRedirects(WebView view, Message cancelMsg,
72 mWrappedClient.onTooManyRedirects(view, cancelMsg, continueMsg);
77 public void onReceivedError(WebView view, int errorCode,
79 mWrappedClient.onReceivedError(view, errorCode, description, failingUrl);
84 public void onFormResubmission(WebView view, Message dontResend,
86 mWrappedClient.onFormResubmission(view, dontResend, resend);
91 public void doUpdateVisitedHistory(WebView view, String url,
93 mWrappedClient.doUpdateVisitedHistory(view, url, isReload);
98 public void onReceivedSslError(WebView view, SslErrorHandler handler,
100 mWrappedClient.onReceivedSslError(view, handler, error);
105 public void onReceivedHttpAuthRequest(WebView view,
107 mWrappedClient.onReceivedHttpAuthRequest(view, handler, host, realm);
112 public boolean shouldOverrideKeyEvent(WebView view, KeyEvent event) {
113 return mWrappedClient.shouldOverrideKeyEvent(view, event);
118 public void onUnhandledKeyEvent(WebView view, KeyEvent event) {
119 mWrappedClient.onUnhandledKeyEvent(view, event);
124 public void onScaleChanged(WebView view, float oldScale, float newScale) {
125 mWrappedClient.onScaleChanged(view, oldScale, newScale);