/external/chromium_org/chrome/browser/guestview/webview/ |
webview_constants.cc | 5 #include "chrome/browser/guestview/webview/webview_constants.h" 7 namespace webview { namespace 10 const char kEventClose[] = "webview.onClose"; 11 const char kEventConsoleMessage[] = "webview.onConsoleMessage"; 12 const char kEventContentLoad[] = "webview.onContentLoad"; 13 const char kEventDialog[] = "webview.onDialog"; 14 const char kEventExit[] = "webview.onExit"; 15 const char kEventLoadAbort[] = "webview.onLoadAbort"; 16 const char kEventLoadCommit[] = "webview.onLoadCommit"; 17 const char kEventLoadRedirect[] = "webview.onLoadRedirect" [all...] |
/frameworks/webview/chromium/ |
jar_package_whitelist.txt | 1 com.android.webview.chromium
|
/external/chromium_org/third_party/WebKit/Source/web/tests/data/ |
shadow_dom_test.html | 17 <webview id="noshadowroot"></webview> 18 <webview id="shadowroot"></webview>
|
/packages/screensavers/Basic/res/layout/ |
main.xml | 2 <WebView 4 android:id="@+id/webview" 8 </WebView>
|
/packages/screensavers/WebView/res/layout/ |
main.xml | 2 <WebView 4 android:id="@+id/webview" 8 </WebView>
|
/frameworks/webview/chromium/tools/WebViewShell/src/com/android/webview/chromium/shell/ |
TelemetryActivity.java | 17 package com.android.webview.chromium.shell; 22 import android.webkit.WebView; 34 WebView webView = (WebView) findViewById(R.id.webview); 36 webView.getSettings().setJavaScriptEnabled(true); 38 webView.setWebViewClient(new WebViewClient() { 40 public boolean shouldOverrideUrlLoading(WebView webView, String url) [all...] |
/packages/apps/Browser/src/com/android/browser/preferences/ |
WebViewPreview.java | 27 import android.webkit.WebView; 34 protected WebView mWebView; 58 protected void setupWebView(WebView view) {} 63 WebView webView = (WebView) root.findViewById(R.id.webview); 64 // Tell WebView to really, truly ignore all touch events. No, seriously, 66 webView.setFocusable(false); 67 webView.setFocusableInTouchMode(false) [all...] |
/external/chromium/webkit/glue/ |
webview_unittest.cc | 6 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h" 9 using WebKit::WebView; 15 WebView* view = test_shell_->webView();
|
/external/chromium_org/chrome/renderer/resources/extensions/ |
web_view_deny.js | 7 // Output error message to console when using <webview> tag with no permission. 8 var errorMessage = "You do not have permission to use <webview> tag." + 9 " Be sure to declare 'webview' permission in your manifest."; 11 addTagWatcher('WEBVIEW', function() { console.error(errorMessage); });
|
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/chrome/test/chromedriver/ |
window_commands.h | 20 class WebView; 24 WebView* web_view, 38 WebView* web_view, 45 WebView* web_view, 52 WebView* web_view, 59 WebView* web_view, 66 WebView* web_view, 73 WebView* web_view, 81 WebView* web_view, 89 WebView* web_view [all...] |
alert_commands.h | 18 class WebView; 22 WebView* web_view, 36 WebView* web_view, 43 WebView* web_view, 50 WebView* web_view, 57 WebView* web_view, 64 WebView* web_view,
|
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
ProgrammaticScrollTest.cpp | 14 #include "WebView.h" 85 WebView* webView = FrameTestHelpers::createWebViewAndLoad(m_baseURL + "short_scroll.html", false, 0, &client); 86 webView->resize(WebSize(1000, 1000)); 87 webView->layout(); 89 WebViewImpl* webViewImpl = static_cast<WebViewImpl*>(webView); 96 webView->close(); 104 WebView* webView = FrameTestHelpers::createWebViewAndLoad(m_baseURL + "long_scroll.html", true, 0, &client); 105 webView->resize(WebSize(1000, 1000)) [all...] |
WebViewTest.cpp | 32 #include "WebView.h" 79 void setWebView(WebView* webView) { m_webView = static_cast<WebViewImpl*>(webView); } 236 WebView* webView = FrameTestHelpers::createWebView(); 237 EXPECT_EQ(kWhite, webView->backgroundColor()); 239 webView->setBaseBackgroundColor(kBlue); 240 EXPECT_EQ(kBlue, webView->backgroundColor()); 243 webView->mainFrame()->loadHTMLString [all...] |
WebPluginContainerTest.cpp | 46 #include "WebView.h" 96 WebPluginContainer* getWebPluginContainer(WebView* webView, const WebString& id) 98 WebElement element = webView->mainFrame()->document().getElementById(id); 105 WebView* webView = FrameTestHelpers::createWebViewAndLoad(m_baseURL + "plugin_container.html", true, new TestPluginWebFrameClient()); 106 ASSERT(webView); 107 webView->settings()->setPluginsEnabled(true); 108 webView->resize(WebSize(300, 300)); 109 webView->layout() [all...] |
/external/chromium_org/ui/views/controls/webview/ |
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...] |
/external/chromium_org/chrome/browser/resources/identity_scope_approval_dialog/ |
scope_approval_dialog.html | 10 <webview class="content" id="providerview"></webview>
|
scope_approval_dialog.js | 5 var webview; variable 8 * Points the webview to the starting URL of a scope authorization 16 // Send popups from the webview to a normal browser window. 17 webview.addEventListener('newwindow', function(e) { 23 webview.onBeforeSendHeaders.addListener(function(details) { 35 webview.src = url; 37 webview.addEventListener('loadstop', function() { 44 webview = document.querySelector('webview');
|
/packages/apps/Browser/tests/src/com/android/browser/ |
TestWebViewClient.java | 25 import android.webkit.WebView; 45 public boolean shouldOverrideUrlLoading(WebView view, String url) { 51 public void onPageStarted(WebView view, String url, Bitmap favicon) { 57 public void onPageFinished(WebView view, String url) { 63 public void onLoadResource(WebView view, String url) { 70 public void onTooManyRedirects(WebView view, Message cancelMsg, 77 public void onReceivedError(WebView view, int errorCode, 84 public void onFormResubmission(WebView view, Message dontResend, 91 public void doUpdateVisitedHistory(WebView view, String url, 98 public void onReceivedSslError(WebView view, SslErrorHandler handler [all...] |
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
WebViewTest.java | 6 import android.webkit.WebView; 24 private WebView webView; 29 webView = new WebView(null); 30 shadowWebView = Robolectric.shadowOf(webView); 35 webView.loadUrl("http://example.com"); 36 assertThat(shadowOf(webView).getLastLoadedUrl(), equalTo("http://example.com")); 41 webView.loadData("<html><body><h1>Hi</h1></body></html>", "text/html", "utf-8"); 42 ShadowWebView.LoadData lastLoadData = shadowOf(webView).getLastLoadData() [all...] |
/frameworks/base/core/java/android/webkit/ |
WebViewFactoryProvider.java | 22 * This is the main entry-point into the WebView back end implementations, which the WebView 24 * implementation of this interface, and make it available to the WebView via mechanism TBD. 29 * This Interface provides glue for implementing the backend of WebView static methods which 35 * {@link android.webkit.WebView#findAddress(String)} 41 * {@link android.webkit.WebView#enablePlatformNotifications()} 42 * {@link android.webkit.WebView#disablePlatformNotifications()} 54 * {@link android.webkit.WebView#setWebContentsDebuggingEnabled(boolean) } 63 * @param webView the WebView instance bound to this implementation instance. Note it will no [all...] |
WebViewFragment.java | 24 import android.webkit.WebView; 27 * A fragment that displays a WebView. 29 * The WebView is automically paused or resumed when the Fragment is paused or resumed. 32 private WebView mWebView; 39 * Called to instantiate the view. Creates and returns the WebView. 47 mWebView = new WebView(getActivity()); 53 * Called when the fragment is visible to the user and actively running. Resumes the WebView. 62 * Called when the fragment is no longer resumed. Pauses the WebView. 71 * Called when the WebView has been detached from the fragment. 72 * The WebView is no longer available after this time [all...] |
WebViewClient.java | 29 * url is about to be loaded in the current WebView. If WebViewClient is not 30 * provided, by default WebView will ask Activity Manager to choose the 33 * current WebView handles the url. 36 * @param view The WebView that is initiating the callback. 38 * @return True if the host application wants to leave the current WebView 41 public boolean shouldOverrideUrlLoading(WebView view, String url) { 52 * @param view The WebView that is initiating the callback. 57 public void onPageStarted(WebView view, String url, Bitmap favicon) { 64 * new Picture, use {@link WebView.PictureListener#onNewPicture}. 66 * @param view The WebView that is initiating the callback [all...] |
/cts/tests/tests/webkit/src/android/webkit/cts/ |
WebView_WebViewTransportTest.java | 21 import android.webkit.WebView; 22 import android.webkit.WebView.WebViewTransport; 34 WebView webView = getActivity().getWebView(); 35 WebViewTransport transport = webView.new WebViewTransport(); 39 transport.setWebView(webView); 40 assertSame(webView, transport.getWebView());
|