HomeSort by relevance Sort by last modified time
    Searched defs:WebView (Results 1 - 25 of 28) sorted by null

1 2

  /external/chromium_org/chrome/test/chromedriver/chrome/
web_view.h 30 class WebView {
32 virtual ~WebView() {}
34 // Return the id for this WebView.
  /external/chromium_org/chrome/renderer/resources/extensions/
web_view.js 5 // Shim that simulates a <webview> tag via Mutation Observers.
30 evt: createEvent('webview.onClose'),
34 evt: createEvent('webview.onConsoleMessage'),
38 evt: createEvent('webview.onContentLoad'),
42 evt: createEvent('webview.onExit'),
46 evt: createEvent('webview.onLoadAbort'),
50 customHandler: function(webview, event, webviewEvent) {
51 webview.currentEntryIndex_ = event.currentEntryIndex;
52 webview.entryCount_ = event.entryCount;
53 webview.processId_ = event.processId
    [all...]
web_view_experimental.js 6 // experimental APIs) for <webview> tag.
9 // We want to control the permission API feature in <webview> separately from
10 // the <webview> feature itself. <webview> is available in stable channel, but
14 var createEvent = require('webView').CreateEvent;
18 var WebView = require('webView').WebView;
23 customHandler: function(webview, event, webviewEvent) {
24 webview.maybeSetupExtDialogEvent_(event, webviewEvent)
    [all...]
  /external/chromium_org/third_party/WebKit/public/web/
WebView.h 70 class WebView : public WebWidget {
93 // Creates a WebView that is NOT yet initialized. You will need to
96 WEBKIT_EXPORT static WebView* create(WebViewClient*);
98 // After creating a WebView, you should immediately call this method.
117 // The returned pointer is valid for the lifetime of the WebView.
125 // Makes the WebView transparent. This is useful if you want to have
130 // Sets the base color used for this WebView's background. This is in effect
149 // Controls the WebView's active state, which may affect the rendering
207 // Advance the focus of the WebView forward to the next element or to the
279 // Save the WebView's current scroll and scale state. Each call to this functio
    [all...]
  /external/chromium_org/ui/views/controls/webview/
webview.h 14 #include "ui/views/controls/webview/webview_export.h"
25 class WEBVIEW_EXPORT WebView : public View,
32 explicit WebView(content::BrowserContext* browser_context);
33 virtual ~WebView();
35 // This creates a WebContents if none is yet associated with this WebView. The
36 // WebView owns this implicitly created WebContents.
39 // Creates a WebContents if none is yet assocaited with this WebView, with the
40 // specified site instance. The WebView owns this WebContents.
43 // WebView does not assume ownership of WebContents set via this method, only
60 // WebView's bounds change (default)
    [all...]
webview.cc 5 #include "ui/views/controls/webview/webview.h"
29 const char WebView::kViewClassName[] = "WebView";
32 // WebView, public:
34 WebView::WebView(content::BrowserContext* browser_context)
43 WebView::~WebView() {
47 content::WebContents* WebView::GetWebContents()
    [all...]
  /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...]
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
WebViewContextMenu.java 35 import android.webkit.WebView;
90 new Intent(Intent.ACTION_DIAL, Uri.parse(WebView.SCHEME_TEL)),
160 WebView webview = (WebView) v; local
161 WebView.HitTestResult result = webview.getHitTestResult();
168 case WebView.HitTestResult.UNKNOWN_TYPE:
169 case WebView.HitTestResult.EDIT_TEXT_TYPE:
194 type == WebView.HitTestResult.PHONE_TYPE)
    [all...]
  /frameworks/base/core/java/android/webkit/
WebView.java 62 * in a WebView, you must add the {@code INTERNET} permissions to your
71 * <a href="{@docRoot}guide/webapps/webview.html">Building Web Apps in WebView</a>.</p>
75 * <p>By default, a WebView provides no browser-like widgets, does not
82 * with a WebView. For example:
90 * <p>To provide a WebView in your own Activity, include a {@code <WebView>} in your layout,
91 * or set the entire Activity window as a WebView during {@link
94 * WebView webview = new WebView(this)
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/webkit/
WebView.java 30 * Mock version of the WebView.
31 * Only non override public methods from the real WebView have been added in there.
37 public class WebView extends MockView {
40 * Construct a new WebView with a Context object.
43 public WebView(Context context) {
48 * Construct a new WebView with layout parameters.
52 public WebView(Context context, AttributeSet attrs) {
57 * Construct a new WebView with layout parameters and a default style.
62 public WebView(Context context, AttributeSet attrs, int defStyle) {
  /packages/apps/Browser/src/com/android/browser/
Controller.java 80 import android.webkit.WebView;
323 WebView webView = t.getWebView();
327 webView.setInitialScale(scale);
400 public void onSetWebView(Tab tab, WebView view) {
407 WebView mainView = tab.getWebView();
408 WebView subView = mFactory.createWebView((mainView == null)
488 WebView view = (WebView) focusNodeMap.get("webview");
1269 final WebView webview = (WebView) v; local
    [all...]
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/19/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/4/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/6/
android.jar 
  /prebuilts/sdk/7/
android.jar 

Completed in 3454 milliseconds

1 2