HomeSort by relevance Sort by last modified time
    Searched full:webview (Results 226 - 250 of 1190) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/Browser/src/com/android/browser/
UiController.java 23 import android.webkit.WebView;
37 WebView getCurrentWebView();
39 WebView getCurrentTopWebView();
  /external/chromium_org/android_webview/browser/renderer_host/
print_manager.h 34 // Provides RenderViewHost wrapper functionality for sending WebView-specific
39 // a webview. There can be at most one active print task per webview.
55 // Note for webview: Returns false immediately if this print manager is
  /external/chromium_org/android_webview/native/
aw_dev_tools_server.h 19 // This class controls WebView-specific Developer Tools remote debugging server.
aw_browser_dependency_factory.h 21 // creating he browser component objects that the Android WebView depends on.
24 // Note this is a distinct role to the Webview embedder proper: this class is
aw_resource.cc 15 // structures that exist in the Browser. By virtue of the WebView running
16 // in single process we can just reach over and use them. When WebView is
  /external/chromium_org/chrome/common/extensions/api/
webview.json 7 "namespace": "webview",
64 "description": "Clears various types of browsing data stored in a storage partition of a <webview>.",
69 "description": "The instance ID of the guest <webview> process."
92 "description": "Injects JavaScript code into a <webview> page.",
97 "description": "The instance ID of the guest <webview> process."
124 "description": "Injects JavaScript code into a <webview> page.",
129 "description": "The instance ID of the guest <webview> process."
156 "description": "Captures the visible area of the currently loaded page inside <webview>.",
161 "description": "The instance ID of the guest <webview> process."
webview_tag.json 8 "description": "Use the <code>webview</code> tag to actively load live content from the web over the network and embed it in your Chrome App. Your app can control the appearance of the <code>webview</code> and interact with the web content, initiate navigations in an embedded web page, react to error events that happen within it, and more (see <a href=\"#usage\">Usage</a>).",
10 "title": "<webview> Tag",
11 "namespace": "<webview>"
116 "description": "Attach the requested target page to an existing <code>webview</code> element.",
120 "name": "webview",
121 "description": "The <code>webview</code> element to which the target page should be attached.",
226 "description": "Interface which provides access to webRequest events on the guest page. See the <a href=\"http://developer.chrome.com/extensions/webRequest.html\">chrome.webRequest</a> extensions API for details on webRequest life cycle and related concepts.<p>To illustrate how usage differs from the extensions webRequest API, consider the following example code which blocks any guest requests for URLs which match <code>*://www.evil.com/*</code>:</p><pre>webview.request.onBeforeRequest.addListener(\r function(details) { return {cancel: true}; },\r {urls: [\"*://www.evil.com/*\"]},\r [\"blocking\"]);</pre><p>Additionally, this interface supports declarative webRequest rules through <code>onRequest</code> and <code>onMessage</code> events. See <a href=\"http://developer.chrome.com/extensions/declarativeWebRequest.html\">declarativeWebRequest</a> for API details.</p>Note that conditions and actions for declarative webview webRequests should be instantiated from their <code>chrome.webViewRequest.*</code> counterparts. The following example code declaratively blocks all requests to <code>\"example.com\"</code> on the webview <code>myWebview</code>:</p><pre>var rule = {\r conditions: [\r new chrome.webViewRequest.Reque (…)
    [all...]
  /external/chromium_org/components/visitedlink/renderer/
visitedlink_slave.cc 10 #include "third_party/WebKit/public/web/WebView.h"
12 using blink::WebView;
76 WebView::updateVisitedLinkState(fingerprints[i]);
80 WebView::resetVisitedLinkState();
  /external/chromium_org/third_party/WebKit/ManualTests/
directory-drop-on-view.html 15 Attempt to drop a directory onto the WebView.<br />
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
TestInterfaces.cpp 44 #include "public/web/WebView.h"
72 // m_gamepadController doesn't depend on WebView.
83 void TestInterfaces::setWebView(WebView* webView, WebTestProxyBase* proxy)
86 m_accessibilityController->setWebView(webView);
87 m_eventSender->setWebView(webView);
88 // m_gamepadController doesn't depend on WebView.
89 m_textInputController->setWebView(webView);
90 m_testRunner->setWebView(webView, proxy);
  /external/chromium_org/third_party/WebKit/Source/web/
DatabaseClientImpl.cpp 67 WebViewImpl* webView = webFrame->viewImpl();
68 if (!webView)
70 if (webView->permissionClient())
71 return webView->permissionClient()->allowDatabase(webFrame, name, displayName, estimatedSize);
IDBFactoryBackendProxy.cpp 62 WebViewImpl* webView = webFrame->viewImpl();
63 // FIXME: webView->permissionClient() returns 0 in test_shell and content_shell http://crbug.com/137269
64 return !webView->permissionClient() || webView->permissionClient()->allowIndexedDB(webFrame, name, origin);
  /external/chromium_org/third_party/WebKit/Source/web/tests/
FrameTestHelpers.h 50 // Convenience class for handling the lifetime of a WebView and its associated mainframe in tests.
57 // Creates and initializes the WebView. Implicitly calls reset() first. IF a
67 WebView* webView() const { return m_webView; }
  /external/chromium_org/third_party/ashmem/
ashmem.gyp 11 # WebView must use the Android system version of ashmem to avoid
  /external/chromium_org/ui/views/controls/webview/
webview_export.h 8 // Defines WEBVIEW_EXPORT so that functionality implemented by the webview
  /frameworks/base/docs/html/guide/webapps/
index.jd 3 page.landing.intro=Android has always been about connectivity and providing a great web browsing experience, so building your app with web technologies can be a great opportunity. Not only can you build an app on the web and still optimize your designs for Android's various screen sizes and densities, but you can also embed web-based content into your Android app using WebView.
  /external/chromium_org/chrome/test/chromedriver/
element_commands.cc 32 WebView* web_view,
78 WebView* web_view,
96 WebView* web_view,
108 WebView* web_view,
119 WebView* web_view,
129 WebView* web_view,
152 WebView* web_view,
197 WebView* web_view,
222 WebView* web_view,
237 WebView* web_view
    [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/
WebViewProvider.java 39 import android.webkit.WebView.HitTestResult;
40 import android.webkit.WebView.PictureListener;
47 * WebView backend provider interface: this interface is the abstract backend to a WebView
48 * instance; each WebView object is bound to exactly one WebViewProvider object which implements
49 * the runtime behavior of that WebView.
51 * All methods must behave as per their namesake in {@link WebView}, unless otherwise noted.
57 // Main interface for backend provider of the WebView class.
60 * Initialize this WebViewProvider instance. Called after the WebView has fully constructed.
90 * See {@link WebView#destroy()}
    [all...]
FindActionModeCallback.java 40 View.OnClickListener, WebView.FindListener {
44 private WebView mWebView;
90 * Set the WebView to search. Must be non null.
92 public void setWebView(WebView webView) {
93 if (null == webView) {
94 throw new AssertionError("WebView supplied to "
97 mWebView = webView;
117 "No WebView for FindActionModeCallback::findNext");
138 "No WebView for FindActionModeCallback::findAll")
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/webview/
webview_api.cc 5 #include "chrome/browser/extensions/api/webview/webview_api.h"
9 #include "chrome/common/extensions/api/webview.h"
18 using extensions::api::webview::SetPermission::Params;
19 namespace webview = extensions::api::webview;
238 scoped_ptr<webview::Go::Params> params(webview::Go::Params::Create(*args_));
263 scoped_ptr<webview::SetPermission::Params> params(
264 webview::SetPermission::Params::Create(*args_));
303 scoped_ptr<extensions::api::webview::OverrideUserAgent::Params> params
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/8/changes/
android.webkit.WebView.html 10 android.webkit.WebView
74 Class android.webkit.<A HREF="../../../../reference/android/webkit/WebView.html" target="_top"><font size="+2"><code>WebView</code></font></A>
86 <A NAME="android.webkit.WebView.emulateShiftHeld_added()"></A>
87 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/webkit/WebView.html#emulateShiftHeld()" target="_top"><code>emulateShiftHeld</code></A>()</nobr>
93 <A NAME="android.webkit.WebView.loadUrl_added(java.lang.String, java.util.Map<java.lang.String, java.lang.String>)"></A>
94 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/webkit/WebView.html#loadUrl(java.lang.String, java.util.Map<java.lang.String, java.lang.String>)" target="_top"><code>loadUrl</code></A>(<code>String,</nobr> Map&lt;String<nobr>,</nobr> String&gt;<nobr><nobr></code>)</nobr>
108 <A NAME="android.webkit.WebView.onChildViewAdded_changed(android.view.View, android.view.View)"></A>
109 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/webkit/WebView.html#onChildViewAdded(android.view.View, android.view.View)" target="_top"><code>onChildViewAdded</code></A>(<code>View,</nobr> View<nobr><nobr></code>) </nobr>
118 <A NAME="android.webkit.WebView.onChildViewRemoved_changed(android.view.View, android.view.View)"></A
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/12/changes/
methods_index_changes.html 60 <nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.debugDump_changed()" class="hiddenlink" target="rightframe">debugDump
62 <nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.disablePlatformNotifications_changed()" class="hiddenlink" target="rightframe">disablePlatformNotifications
74 <nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.emulateShiftHeld_changed()" class="hiddenlink" target="rightframe">emulateShiftHeld
76 <nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.enablePlatformNotifications_changed()" class="hiddenlink" target="rightframe">enablePlatformNotifications
130 <nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.getVisibleTitleHeight_changed()" class="hiddenlink" target="rightframe">getVisibleTitleHeigh
    [all...]
  /external/chromium/webkit/glue/
iframe_redirect_unittest.cc 14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h"
40 test_shell_->webView()->findFrameByName(WebString::fromUTF8("ifr"));
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
AwWebContentsDelegate.java 14 * WebView-specific WebContentsDelegate.
17 * These methods belong to WebView but are not shared with the Chromium Android port.

Completed in 1927 milliseconds

1 2 3 4 5 6 7 8 91011>>