/frameworks/base/core/java/android/webkit/ |
WebSettings.java | 22 * Manages settings state for a WebView. When a WebView is first created, it 25 * WebView.getSettings() is tied to the life of the WebView. If a WebView has 90 * Enum for specifying the WebView's desired density. 208 * Sets whether the WebView should support zooming using its on-screen zoom 211 * affect zooming performed using the {@link WebView#zoomIn()} and 212 * {@link WebView#zoomOut()} methods. The default is true. 214 * @param support whether the WebView should support zoo [all...] |
/external/chromium_org/third_party/WebKit/Source/web/ |
FrameLoaderClientImpl.cpp | 146 WebViewImpl* webview = m_webFrame->viewImpl(); local 147 if (webview->devToolsAgentPrivate()) 148 webview->devToolsAgentPrivate()->didCreateScriptContext(m_webFrame, worldId); 163 WebViewImpl* webview = m_webFrame->viewImpl(); local 164 if (webview && webview->permissionClient()) 165 return webview->permissionClient()->allowScriptExtension(m_webFrame, extensionName, extensionGroup, worldId); 178 WebViewImpl* webview = m_webFrame->viewImpl(); local 179 if (webview && webview->permissionClient() 187 WebViewImpl* webview = m_webFrame->viewImpl(); local 196 WebViewImpl* webview = m_webFrame->viewImpl(); local 205 WebViewImpl* webview = m_webFrame->viewImpl(); local 214 WebViewImpl* webview = m_webFrame->viewImpl(); local 223 WebViewImpl* webview = m_webFrame->viewImpl(); local 232 WebViewImpl* webview = m_webFrame->viewImpl(); local 239 WebViewImpl* webview = m_webFrame->viewImpl(); local 389 WebViewImpl* webview = m_webFrame->viewImpl(); local 493 WebViewImpl* webview = m_webFrame->viewImpl(); local 500 WebViewImpl* webview = m_webFrame->viewImpl(); local 510 WebViewImpl* webview = m_webFrame->viewImpl(); local 541 WebViewImpl* webview = m_webFrame->viewImpl(); local [all...] |
WebWorkerClientImpl.cpp | 100 WebView* WebWorkerClientImpl::view() const 111 WebKit::WebViewImpl* webView = m_webFrame->viewImpl(); 112 if (!webView) 114 return !webView->permissionClient() || webView->permissionClient()->allowDatabase(m_webFrame, name, displayName, estimatedSize); 121 WebKit::WebViewImpl* webView = m_webFrame->viewImpl(); 122 if (!webView) 124 return !webView->permissionClient() || webView->permissionClient()->allowFileSystem(m_webFrame); 141 WebKit::WebViewImpl* webView = m_webFrame->viewImpl() [all...] |
/external/chromium_org/chrome/common/extensions/docs/templates/articles/ |
webview_tag.html | 1 <h1>Webview Tag API</h1> 10 <td>Use the <code>webview</code> tag to actively load live content 12 Your app can control the appearance of the <code>webview</code> and 25 <td><code>"webview"</code></td> 31 <a href="https://github.com/GoogleChrome/chrome-app-samples/tree/master/webview">webview</a> 37 <a href="https://developers.google.com/live/shows/7320022-11001/">Chrome Apps Office Hours - the WebView Control</a></td> 44 Use the <code>webview</code> tag to embed 'guest' content 46 The guest content is contained within the <code>webview</code> container; 53 the <code>webview</code [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) {
|
/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.
|
/external/chromium_org/chrome/test/chromedriver/ |
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.cc | 15 #include "third_party/WebKit/public/web/WebView.h" 41 WebKit::WebView* TextInputClientObserver::webview() { function in class:content::TextInputClientObserver 47 size_t index = webview()->focusedFrame()->characterIndexForPoint(web_point); 58 WebKit::WebFrame* frame = webview()->focusedFrame(); 72 WebKit::WebFrame* frame = webview()->focusedFrame();
|
/frameworks/base/docs/html/sdk/api_diff/17/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> 85 <A NAME="android.webkit.WebView.ctor_changed(android.content.Context, android.util.AttributeSet, int, boolean)"></A> 86 <nobr><A HREF="../../../../reference/android/webkit/WebView.html#WebView(android.content.Context, android.util.AttributeSet, int, boolean)" target="_top"><code>WebView</code></A>(<code>Context,</nobr> AttributeSet<nobr>,</nobr> int<nobr>,</nobr> boolean<nobr><nobr></code>) </nobr> 104 <A NAME="android.webkit.WebView.debugDump_removed()"></A> 111 <A NAME="android.webkit.WebView.disablePlatformNotifications_removed()"></A> 118 <A NAME="android.webkit.WebView.emulateShiftHeld_removed()"></A [all...] |
/packages/apps/Browser/src/com/android/browser/ |
TabControl.java | 21 import android.webkit.WebView; 70 * Return the current tab's main WebView. This will always return the main 71 * WebView for a given tab and not a subwindow. 72 * @return The current tab's WebView. 74 WebView getCurrentWebView() { 83 * Return the current tab's top-level WebView. This can return a subwindow 85 * @return The top-level WebView of the current tab. 87 WebView getCurrentTopWebView() { 99 WebView getCurrentSubWindow() { 201 final WebView w = createNewWebView(privateBrowsing) 562 final WebView webview = t.getWebView(); local [all...] |
/packages/apps/HTMLViewer/src/com/android/htmlviewer/ |
HTMLViewerActivity.java | 28 import android.webkit.WebView; 37 * Wraps a WebView widget within an Activity. When launched, it uses the 38 * URI from the intent as the URL to load into the WebView. 39 * It supports all URLs schemes that a standard WebView supports, as well as 41 * The WebView default settings are used with the exception of normal layout 50 * The WebView that is placed in this Activity 52 private WebView mWebView; 69 // BrowserFrame by WebView. As it is called in WebCore thread, it can 76 mWebView = new WebView(this); 82 // Configure the webview [all...] |
/frameworks/base/docs/html/sdk/api_diff/12/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.getPluginList_removed()"></A> 93 <A NAME="android.webkit.WebView.refreshPlugins_removed(boolean)"></A> 108 <A NAME="android.webkit.WebView.debugDump_changed()"></A> 109 <nobr><code>void</code> <A HREF="../../../../reference/android/webkit/WebView.html#debugDump()" target="_top"><code>debugDump</code></A>() </nobr> 118 <A NAME="android.webkit.WebView.disablePlatformNotifications_changed()"></A> 119 <nobr><code>void</code> <A HREF="../../../../reference/android/webkit/WebView.html#disablePlatformNotifications()" target="_top"><code>disablePlatformNotifications</code></A>() </nobr> 128 <A NAME="android.webkit.WebView.emulateShiftHeld_changed()"></A [all...] |
/developers/samples/android/connectivity/sync/BasicSyncAdapter/BasicSyncAdapterTests/ |
proguard-project.txt | 15 # If your project uses WebView with JS, uncomment the following 18 #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
/developers/samples/android/testing/ActivityInstrumentationSample/ |
proguard-project.txt | 15 # If your project uses WebView with JS, uncomment the following 18 #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
/developers/samples/android/testing/ActivityInstrumentationSample/tests/ |
proguard-project.txt | 15 # If your project uses WebView with JS, uncomment the following 18 #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
/development/samples/training/NsdChat/ |
proguard.cfg | 15 # If your project uses WebView with JS, uncomment the following 18 #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
/external/chromium_org/chrome/browser/resources/identity_scope_approval_dialog/ |
background.js | 6 * Displays a webview based authorization dialog. 9 * @param {string} url A URL that will be loaded in the webview.
|
/external/chromium_org/chrome/test/chromedriver/chrome/ |
stub_chrome.h | 14 class WebView; 26 WebView** web_view) OVERRIDE;
|
/external/chromium_org/ui/views/test/ |
webview_test_helper.cc | 8 #include "ui/views/controls/webview/webview.h"
|
/external/droiddriver/samples/testapp/tests/ |
proguard-project.txt | 15 # If your project uses WebView with JS, uncomment the following 18 #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
/frameworks/base/core/tests/coretests/res/layout/ |
accessibility_injector_test.xml | 17 <WebView xmlns:android="http://schemas.android.com/apk/res/android" 18 android:id="@+id/webview"
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/ |
proguard-project.txt | 15 # If your project uses WebView with JS, uncomment the following 18 #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
/frameworks/volley/ |
proguard-project.txt | 15 # If your project uses WebView with JS, uncomment the following 18 #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
/frameworks/webview/ |
Android.mk | 17 # This package provides a layer of abstraction that allows the WebView 23 LOCAL_MODULE := webview
|
/frameworks/webview/chromium/tools/WebViewShell/res/values/ |
strings.xml | 18 <string name="app_name">WebView Telemetry</string> 19 <string name="title_activity_telemetry">WebView Telemetry</string>
|