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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/webview/chromium/
jar_package_whitelist.txt 1 com.android.webview.chromium
  /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 kEventLoadProgress[] = "webview.onLoadProgress"
    [all...]
  /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/common/extensions/docs/templates/private/permissions/
webview.html 1 Required if the app uses the <a href="webview_tag.html">Webview Tag</a> to embed live content from the web in the packaged app.
  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebViewTest.cpp 32 #include "WebView.h"
89 void setWebView(WebView* webView) { m_webView = toWebViewImpl(webView); }
248 WebView* webView = m_webViewHelper.initialize();
249 EXPECT_EQ(kWhite, webView->backgroundColor());
251 webView->setBaseBackgroundColor(kBlue);
252 EXPECT_EQ(kBlue, webView->backgroundColor());
255 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);
106 WebView* webView = webViewHelper.initializeAndLoad(m_baseURL + "plugin_container.html", true, new TestPluginWebFrameClient());
107 ASSERT(webView);
108 webView->settings()->setPluginsEnabled(true);
109 webView->resize(WebSize(300, 300));
110 webView->layout()
    [all...]
  /external/chromium_org/ui/views/controls/webview/
webview.cc 5 #include "ui/views/controls/webview/webview.h"
26 const char WebView::kViewClassName[] = "WebView";
29 // WebView, public:
31 WebView::WebView(content::BrowserContext* browser_context)
42 WebView::~WebView() {
46 content::WebContents* WebView::GetWebContents()
    [all...]
  /external/chromium_org/chrome/browser/resources/gaia_auth/
inline_main.html 11 <webview id="gaia-frame"></webview>
  /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.request.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...]
  /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...]
element_util.h 21 class WebView;
33 WebView* web_view,
39 WebView* web_view,
44 WebView* web_view,
50 WebView* web_view,
57 WebView* web_view,
65 WebView* web_view,
71 WebView* web_view,
78 WebView* web_view,
84 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,
  /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()}
59 * {@link android.webkit.WebView#setWebContentsDebuggingEnabled(boolean) }
68 * @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());
  /external/chromium_org/chrome/test/chromedriver/test/webview_shell/java/src/org/chromium/chromedriver_webview_shell/
Main.java 15 import android.webkit.WebView;
20 private WebView mWebView;
29 WebView.setWebContentsDebuggingEnabled(true);
30 mWebView = (WebView) findViewById(R.id.webview);
36 public void onProgressChanged(WebView view, int progress) {
41 public void onReceivedError(WebView view, int errorCode, String description,

Completed in 441 milliseconds

1 2 3 4 5 6 7 8 91011>>