HomeSort by relevance Sort by last modified time
    Searched full:webview (Results 26 - 50 of 1115) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/test/chromedriver/
element_util.h 21 class WebView;
33 WebView* web_view,
39 WebView* web_view,
46 WebView* web_view,
54 WebView* web_view,
60 WebView* web_view,
67 WebView* web_view,
73 WebView* web_view,
79 WebView* web_view,
85 WebView* web_view
    [all...]
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...]
  /external/chromium_org/ui/views/examples/
webview_example.cc 10 #include "ui/views/controls/webview/webview.h"
17 : ExampleBase("WebView"),
26 webview_ = new WebView(browser_context_);
  /development/samples/training/network-usage/res/layout/
main.xml 7 <WebView xmlns:android="http://schemas.android.com/apk/res/android"
8 android:id="@+id/webview"
  /external/chromium/webkit/glue/
webdropdata.h 5 // A struct for managing data being dropped on a webview. This represents a
32 // User is dragging a link into the webview.
36 // User is dragging a link out-of the webview.
39 // File extension for dragging images from a webview to the desktop.
42 // User is dropping one or more files on the webview.
45 // User is dragging plain text into the webview.
48 // User is dragging text/html into the webview (e.g., out of Firefox).
54 // User is dragging data from the webview (e.g., an image).
context_menu_unittest.cc 15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h"
22 using WebKit::WebView;
60 WebView* webview = test_shell_->webView(); local
61 webview->handleInputEvent(mouse_event);
65 webview->handleInputEvent(mouse_event);
  /external/chromium_org/webkit/renderer/
webpreferences_renderer.h 11 class WebView;
20 WebKit::WebView* web_view);
  /external/clang/test/SemaObjC/
conditional-expr-8.m 12 @interface WebView : NSView
21 WebView *m_webView;
  /frameworks/base/samples/training/network-usage/res/layout/
main.xml 7 <WebView xmlns:android="http://schemas.android.com/apk/res/android"
8 android:id="@+id/webview"
  /packages/apps/Browser/src/com/android/browser/
BrowserWebViewFactory.java 22 import android.webkit.WebView;
35 protected WebView instantiateWebView(AttributeSet attrs, int defStyle,
41 public WebView createSubWebView(boolean privateBrowsing) {
46 public WebView createWebView(boolean privateBrowsing) {
47 WebView w = instantiateWebView(null, android.R.attr.webViewStyle, privateBrowsing);
52 protected void initWebViewSettings(WebView w) {
64 // Add this WebView to the settings observer list and update the
70 WebView.setWebContentsDebuggingEnabled(true);
WebViewTimersControl.java 20 import android.webkit.WebView;
23 * Centralised point for controlling WebView timers pausing and resuming.
53 private void resumeTimers(WebView wv) {
54 if (LOGD_ENABLED) Log.d(LOGTAG, "Resuming webview timers, view=" + wv);
60 private void maybePauseTimers(WebView wv) {
62 if (LOGD_ENABLED) Log.d(LOGTAG, "Pausing webview timers, view=" + wv);
67 public void onBrowserActivityResume(WebView wv) {
73 public void onBrowserActivityPause(WebView wv) {
79 public void onPrerenderStart(WebView wv) {
85 public void onPrerenderDone(WebView wv)
    [all...]
WebViewFactory.java 19 import android.webkit.WebView;
26 public WebView createWebView(boolean privateBrowsing);
28 public WebView createSubWebView(boolean privateBrowsing);
  /frameworks/base/tests/BrowserPowerTest/src/com/android/browserpowertest/
PowerTestActivity.java 29 import android.webkit.WebView;
46 private WebView webView;
74 webView = new WebView(this);
75 webView.getSettings().setJavaScriptEnabled(true);
76 webView.getSettings().setJavaScriptCanOpenWindowsAutomatically(false);
77 webView.getSettings().setLayoutAlgorithm(LayoutAlgorithm.NORMAL);
81 webView.setWebViewClient(webViewClient);
82 webView.setWebChromeClient(chromeClient)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
FrameTestHelpers.cpp 39 #include "WebView.h"
77 WebView* createWebView(bool enableJavascript, WebFrameClient* webFrameClient, WebViewClient* webViewClient)
83 WebView* webView = WebView::create(webViewClient);
84 webView->settings()->setJavaScriptEnabled(enableJavascript);
85 webView->settings()->setDeviceSupportsMouse(false);
86 webView->settings()->setForceCompositingMode(true);
87 webView->initializeMainFrame(webFrameClient);
89 return webView;
    [all...]
  /external/chromium_org/chrome/browser/guestview/webview/
webview_guest.cc 5 #include "chrome/browser/guestview/webview/webview_guest.h"
11 #include "chrome/browser/guestview/webview/webview_constants.h"
49 return webview::kPermissionTypeDownload;
51 return webview::kPermissionTypeGeolocation;
53 return webview::kPermissionTypeMedia;
55 return webview::kPermissionTypeNewWindow;
57 return webview::kPermissionTypePointerLock;
59 return webview::kPermissionTypeDialog;
114 return GuestView::WEBVIEW;
131 args->SetInteger(webview::kLevel, level)
    [all...]
  /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/chrome/browser/extensions/api/webview/
webview_api.h 46 DECLARE_EXTENSION_FUNCTION("webview.executeScript", WEBVIEW_EXECUTESCRIPT)
61 DECLARE_EXTENSION_FUNCTION("webview.insertCSS", WEBVIEW_INSERTCSS)
69 DECLARE_EXTENSION_FUNCTION("webview.go", WEBVIEW_GO);
85 DECLARE_EXTENSION_FUNCTION("webview.reload", WEBVIEW_RELOAD);
101 DECLARE_EXTENSION_FUNCTION("webview.setPermission", WEBVIEW_SETPERMISSION);
117 DECLARE_EXTENSION_FUNCTION("webview.stop", WEBVIEW_STOP);
133 DECLARE_EXTENSION_FUNCTION("webview.terminate", WEBVIEW_TERMINATE);
  /frameworks/base/core/java/android/webkit/
HttpAuthHandler.java 23 * created by the WebView and passed to
25 * call either {@link #proceed} or {@link #cancel} to set the WebView's
43 * @see WebView#getHttpAuthUsernamePassword
50 * Instructs the WebView to cancel the authentication request.
56 * Instructs the WebView to proceed with the authentication with the given
58 * the WebView's store using {@link WebView#getHttpAuthUsernamePassword}.
WebViewDatabase.java 22 * This class allows developers to determine whether any WebView used in the
52 * @see WebView#savePassword
54 * @deprecated Saving passwords in WebView will not be supported in future versions.
65 * @see WebView#savePassword
67 * @deprecated Saving passwords in WebView will not be supported in future versions.
78 * @see WebView#getHttpAuthUsernamePassword
79 * @see WebView#setHttpAuthUsernamePassword
89 * @see WebView#getHttpAuthUsernamePassword
90 * @see WebView#setHttpAuthUsernamePassword
  /frameworks/base/docs/html/guide/webapps/
webview.jd 1 page.title=Building Web Apps in WebView
8 <li>Use {@link android.webkit.WebView} to display web pages in your Android application
15 <li><a href="#AddingWebView">Adding a WebView to Your Application</a></li>
16 <li><a href="#UsingJavaScript">Using JavaScript in WebView</a>
31 <li>{@link android.webkit.WebView}</li>
40 you can do it using {@link android.webkit.WebView}. The {@link android.webkit.WebView} class is an
43 browser, such as navigation controls or an address bar. All that {@link android.webkit.WebView}
46 <p>A common scenario in which using {@link android.webkit.WebView} is helpful is when you want to
49 that contains a {@link android.webkit.WebView}, then use that to display your document that'
    [all...]
  /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/screensavers/WebView/src/com/android/dreams/web/
Screensaver.java 42 import android.webkit.WebView;
51 public boolean shouldOverrideUrlLoading(WebView view, String url) {
76 WebView webview = (WebView) findViewById(R.id.webview); local
77 webview.setWebViewClient(new LinkLauncher());
79 WebSettings webSettings = webview.getSettings();
82 webview.loadUrl(url);
  /cts/tests/src/android/webkit/cts/
WebViewStartupStubActivity.java 22 import android.webkit.WebView;
25 private WebView mWebView;
32 public WebView createAndAttachWebView() {
33 mWebView = new WebView(this);
38 public WebView getWebView() {
  /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(
  /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...]

Completed in 1568 milliseconds

12 3 4 5 6 7 8 91011>>