/external/chromium_org/chrome/common/extensions/docs/templates/intros/ |
webview_tag.html | 4 Use the <code>webview</code> tag to embed 'guest' content 6 The guest content is contained within the <code>webview</code> container; 13 the <code>webview</code> 24 add the <code>webview</code> tag to your app's embedder page 27 the <code>webview</code> tag includes the <code>src</code> of the web page 28 and css styles that control the appearance of the <code>webview</code> container: 31 <pre><webview id="foo" src="http://www.google.com/" style="width:640px; height:480px"></webview></pre> 35 you can write JavaScript that listens for <a href="#dom_events">webview events</a> 36 and responds to those events using the <a href="#methods">webview methods</a> [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/chrome/test/chromedriver/test/webview_shell/java/res/layout/ |
main_layout.xml | 8 <WebView xmlns:android="http://schemas.android.com/apk/res/android" 9 android:id="@+id/webview"
|
/external/chromium_org/content/public/renderer/ |
web_preferences.h | 13 class WebView; 19 blink::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...] |
/external/chromium_org/chrome/renderer/resources/extensions/ |
web_view_deny.js | 7 // Output error message to console when using the <webview> tag with no 9 var errorMessage = "You do not have permission to use the webview element." + 10 " Be sure to declare the 'webview' permission in your manifest file."; 12 // Registers <webview> custom element. 20 window.WebView = 21 DocumentNatives.RegisterElement('webview', {prototype: proto});
|
/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/chrome/test/chromedriver/ |
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...] |
/frameworks/base/docs/html/training/printing/ |
html-docs.jd | 27 <p>In Android 4.4 (API level 19), the {@link android.webkit.WebView} class has been updated to 32 use {@link android.webkit.WebView} to print it.</p> 37 <p>Printing an HTML document with {@link android.webkit.WebView} involves loading an HTML 39 string and load it into a {@link android.webkit.WebView} for printing.</p> 42 is not using a {@link android.webkit.WebView}, you can create an instance of the class 48 <li>Load the HTML resource into the {@link android.webkit.WebView} object.</li> 55 private WebView mWebView; 58 // Create a WebView object specifically for printing 59 WebView webView = new WebView(getActivity()) [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
|
/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...] |
/external/chromium_org/chrome/browser/extensions/api/webview/ |
webview_api.h | 10 #include "chrome/browser/guestview/webview/webview_guest.h" 12 // WARNING: Webview could be loaded in an unblessed context, thus any new 19 // An abstract base class for async webview APIs. It does a process ID check 38 DECLARE_EXTENSION_FUNCTION("webview.clearData", WEBVIEW_CLEARDATA); 99 DECLARE_EXTENSION_FUNCTION("webview.executeScript", WEBVIEW_EXECUTESCRIPT) 114 DECLARE_EXTENSION_FUNCTION("webview.insertCSS", WEBVIEW_INSERTCSS) 122 DECLARE_EXTENSION_FUNCTION("webview.captureVisibleRegion", 141 DECLARE_EXTENSION_FUNCTION("webview.go", WEBVIEW_GO); 157 DECLARE_EXTENSION_FUNCTION("webview.reload", WEBVIEW_RELOAD); 173 DECLARE_EXTENSION_FUNCTION("webview.setPermission", WEBVIEW_SETPERMISSION) [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(
|
/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.
|