/frameworks/base/core/java/android/webkit/ |
WebChromeClient.java | 29 * @param view The WebView that initiated the callback. 33 public void onProgressChanged(WebView view, int newProgress) {} 37 * @param view The WebView that initiated the callback. 40 public void onReceivedTitle(WebView view, String title) {} 44 * @param view The WebView that initiated the callback. 47 public void onReceivedIcon(WebView view, Bitmap icon) {} 51 * @param view The WebView that initiated the callback. 55 public void onReceivedTouchIconUrl(WebView view, String url, 74 * {@link WebView}. 105 * this method, create a new WebView to host the window, insert it into th [all...] |
WebViewFactoryProvider.java | 22 * This is the main entry-point into the WebView back end implementations, which the WebView 24 * implementation of this interface, and make it available to the WebView via mechanism TBD. 29 * This Interface provides glue for implementing the backend of WebView static methods which 35 * {@link android.webkit.WebView#findAddress(String)} 41 * {@link android.webkit.WebView#enablePlatformNotifications()} 42 * {@link android.webkit.WebView#disablePlatformNotifications()} 59 * {@link android.webkit.WebView#setWebContentsDebuggingEnabled(boolean) } 68 * @param webView the WebView instance bound to this implementation instance. Note it will no [all...] |
/external/chromium_org/chrome/browser/chromeos/first_run/ |
first_run_view.h | 20 class WebView; 46 views::WebView* web_view_;
|
/external/chromium_org/chrome/test/chromedriver/ |
util.h | 16 class WebView; 23 WebView* web_view,
|
element_commands.h | 20 class WebView; 24 WebView* web_view, 33 WebView* web_view, 41 WebView* web_view, 50 WebView* web_view, 58 WebView* web_view, 66 WebView* web_view, 74 WebView* web_view, 82 WebView* web_view, 90 WebView* web_view [all...] |
session_unittest.cc | 23 WebView** web_view) OVERRIDE { 39 WebView* web_view; 47 WebView* web_view; 55 WebView* web_view = NULL;
|
alert_commands.cc | 21 WebView* web_view = NULL; 44 WebView* web_view, 54 WebView* web_view, 68 WebView* web_view, 84 WebView* web_view, 95 WebView* web_view,
|
/external/chromium_org/content/renderer/ |
text_input_client_observer.h | 15 class WebView; 34 // Returns the WebView of the RenderView. 35 blink::WebView* webview();
|
/external/chromium/webkit/glue/ |
dom_operations.h | 17 class WebView; 48 // Get all savable resource links from current webview, include main frame 52 bool GetAllSavableResourceLinksForCurrentPage(WebKit::WebView* view, 59 bool PauseAnimationAtTimeOnElementWithId(WebKit::WebView* view, 67 bool PauseTransitionAtTimeOnElementWithId(WebKit::WebView* view, 74 bool ElementDoesAutoCompleteForElementWithId(WebKit::WebView* view, 78 int NumberOfActiveAnimations(WebKit::WebView* view);
|
/external/chromium_org/chrome/test/chromedriver/test/webview_shell/java/src/org/chromium/chromedriver_webview_shell/ |
Main.java | 15 import android.webkit.WebView; 20 private WebView mWebView; 29 WebView.setWebContentsDebuggingEnabled(true); 30 mWebView = (WebView) findViewById(R.id.webview); 36 public void onProgressChanged(WebView view, int progress) { 41 public void onReceivedError(WebView view, int errorCode, String description,
|
/cts/tests/uiautomator/test-apps/CtsUiAutomatorApp/src/com/android/cts/uiautomator/ |
Test6DetailFragment.java | 24 import android.webkit.WebView; 29 + "This is test <b>6</b> for WebView text traversal test." 46 WebView wv = (WebView) rootView.findViewById(R.id.test6WebView);
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
Focus1.java | 23 import android.webkit.WebView; 37 WebView webView = (WebView) findViewById(R.id.rssWebView); 38 webView.loadData(
|
/development/samples/training/multiscreen/newsreader/src/com/example/android/newsreader/ |
ArticleFragment.java | 24 import android.webkit.WebView; 30 // The webview where we display the article (our only view) 31 WebView mWebView; 42 * Sets up the UI. It consists if a single WebView. 46 mWebView = new WebView(getActivity()); 62 * Loads article data into the webview. 64 * This method is called internally to update the webview's contents to the appropriate
|
/external/chromium_org/ash/screensaver/ |
screensaver_view.h | 19 class WebView; 33 base::Callback<views::WebView*(content::BrowserContext*)> WebViewFactory; 65 // Load the screensaver in the WebView's webcontent. If the webcontents 66 // don't exist, they'll be created by WebView. 83 views::WebView* screensaver_webview_; 85 // Window that holds the screensaver webview.
|
/packages/apps/Browser/tests/src/com/android/browser/ |
TestWebChromeClient.java | 30 import android.webkit.WebView; 48 public void onProgressChanged(WebView view, int newProgress) { 54 public void onReceivedTitle(WebView view, String title) { 60 public void onReceivedIcon(WebView view, Bitmap icon) { 66 public void onReceivedTouchIconUrl(WebView view, String url, 85 public boolean onCreateWindow(WebView view, boolean dialog, 94 public void onRequestFocus(WebView view) { 100 public void onCloseWindow(WebView window) { 106 public boolean onJsAlert(WebView view, String url, String message, 113 public boolean onJsConfirm(WebView view, String url, String message [all...] |
/packages/apps/Browser/src/com/android/browser/preferences/ |
WebViewPreview.java | 27 import android.webkit.WebView; 34 protected WebView mWebView; 58 protected void setupWebView(WebView view) {} 63 WebView webView = (WebView) root.findViewById(R.id.webview); 64 // Tell WebView to really, truly ignore all touch events. No, seriously, 66 webView.setFocusable(false); 67 webView.setFocusableInTouchMode(false) [all...] |
/external/chromium_org/chrome/browser/ui/views/ |
user_manager_view.h | 12 class WebView; 49 views::WebView* web_view_;
|
/external/chromium_org/chrome/test/chromedriver/chrome/ |
chrome.h | 13 class WebView; 30 // Return the WebView for the given id. 31 virtual Status GetWebViewById(const std::string& id, WebView** web_view) = 0; 33 // Closes the specified WebView. 36 // Activates the specified WebView.
|
stub_chrome.h | 14 class WebView; 28 WebView** web_view) OVERRIDE;
|
chrome_desktop_impl.h | 24 class WebView; 42 scoped_ptr<WebView>* web_view);
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
PrintHtmlFromScreen.java | 25 import android.webkit.WebView; 32 * from a {@link WebView} which is shown on the screen. 34 * This activity shows a simple HTML content in a {@link WebView} 36 * action bar. The shown {@link WebView} is doing the printing. 40 * @see WebView 44 private WebView mWebView; 52 mWebView = (WebView) findViewById(R.id.web_view); 57 public void onPageFinished(WebView view, String url) {
|
/frameworks/base/tests/WebViewTests/src/com/android/webviewtests/ |
JavaBridgeTestBase.java | 18 * Common functionality for testing the WebView's Java Bridge. 25 import android.webkit.WebView; 34 public synchronized void onPageFinished(WebView webView, String url) { 81 // Sets up the WebView and injects the supplied object. Intended to be called from setUp(). 92 WebView webView = activity.getWebView(); 93 webView.addJavascriptInterface(object, name); 94 webView.getSettings().setJavaScriptEnabled(true); 95 webView.setWebViewClient(mWebViewClient) [all...] |
/packages/apps/Browser/src/com/android/browser/ |
WebViewController.java | 31 import android.webkit.WebView; 36 * WebView aspect of the controller 48 void onSetWebView(Tab tab, WebView view); 52 void onPageStarted(Tab tab, WebView view, Bitmap favicon); 60 void onFavicon(Tab tab, WebView view, Bitmap icon); 62 boolean shouldOverrideUrlLoading(Tab tab, WebView view, String url); 72 void onReceivedHttpAuthRequest(Tab tab, WebView view, final HttpAuthHandler handler, 87 void showSslCertificateOnError(WebView view, SslErrorHandler handler,
|
/frameworks/opt/mailcommon/java/com/android/mailcommon/ |
WebViewContextMenu.java | 36 import android.webkit.WebView; 148 WebView webview = (WebView) v; local 149 WebView.HitTestResult result = webview.getHitTestResult(); 156 case WebView.HitTestResult.UNKNOWN_TYPE: 157 case WebView.HitTestResult.EDIT_TEXT_TYPE: 182 type == WebView.HitTestResult.PHONE_TYPE); 184 type == WebView.HitTestResult.EMAIL_TYPE) [all...] |
/external/chromium_org/ |
Android.mk | 5 # This Android makefile is used to build WebView in the Android build system. 7 # we are doing a WebView build. For other builds, this makefile does nothing, 14 # WebView build using the Android build system. 21 # WebView code can build with "make GYP_CONFIGURATION=Debug".
|