HomeSort by relevance Sort by last modified time
    Searched full:webview (Results 201 - 225 of 1115) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/chrome/browser/ui/views/
constrained_web_dialog_delegate_views.cc 15 #include "ui/views/controls/webview/unhandled_keyboard_event_handler.h"
16 #include "ui/views/controls/webview/webview.h"
39 views::WebView* view)
72 views::WebView* view_;
81 : public views::WebView,
167 // views::WebView overrides.
204 : views::WebView(browser_context),
  /external/chromium_org/chrome/renderer/extensions/
chrome_v8_extension.cc 19 #include "third_party/WebKit/public/web/WebView.h"
24 using WebKit::WebView;
  /external/chromium_org/chrome/test/chromedriver/chrome/
chrome_impl.h 23 class WebView;
35 WebView** web_view) OVERRIDE;
performance_logger.h 18 // "webview": <originating WebView ID>,
  /external/chromium_org/chrome/test/chromedriver/
util.h 16 class WebView;
23 WebView* web_view,
  /external/chromium_org/content/public/common/
page_zoom.h 21 // WebView::minTextSizeMultiplier.
25 // WebView::maxTextSizeMultiplier.
  /external/chromium_org/content/public/renderer/
render_view.h 25 class WebView;
44 // Returns the RenderView containing the given WebView.
45 static RenderView* FromWebView(WebKit::WebView* webview);
50 // Visit all RenderViews with a live WebView (i.e., RenderViews that have
75 // Returns the associated WebView. May return NULL when the view is closing.
76 virtual WebKit::WebView* GetWebView() = 0;
135 // Returns the current visibility of the WebView.
  /frameworks/base/core/java/android/webkit/
JsDialogHelper.java 35 * different WebView implementations.
72 public boolean invokeCallback(WebChromeClient client, WebView webView) {
75 return client.onJsAlert(webView, mUrl, mMessage, mResult);
77 return client.onJsConfirm(webView, mUrl, mMessage, mResult);
79 return client.onJsBeforeUnload(webView, mUrl, mMessage, mResult);
81 return client.onJsPrompt(webView, mUrl, mMessage, mDefaultValue, mResult);
89 Log.w(TAG, "Cannot create a dialog, the WebView context is not an Activity");
JsPromptResult.java 22 * {@link WebChromeClient#onJsPrompt(WebView, String, String, String, JsPromptResult)} call with a
24 * dialog prompt back to the WebView instance. The client can call cancel() to cancel the dialog or
  /frameworks/base/core/res/res/layout/
web_runtime.xml 22 <WebView
23 android:id="@+id/webview"
  /frameworks/base/core/tests/coretests/res/layout/
scrollview_with_webviews.xml 30 <WebView android:id="@+id/wb1"
38 <WebView android:id="@+id/wb2"
  /frameworks/base/docs/html/guide/webapps/
overview.jd 8 including a WebView in the layout.</p>
31 application that embeds some web pages (using a {@link android.webkit.WebView} in your Android
40 <p>Since Android 1.0, {@link android.webkit.WebView} has been available for Android
47 {@link android.webkit.WebView} support the same viewport and screen density features.</p>
59 or using {@link android.webkit.WebView}.</dd>
60 <dt><a href="{@docRoot}guide/webapps/webview.html"><strong>Building Web Apps in
61 WebView</strong></a></dt>
62 <dd>How to embed web pages into your Android application using {@link android.webkit.WebView} and
  /frameworks/base/docs/html/sdk/api_diff/12/changes/
android.webkit.WebView.PictureListener.html 10 android.webkit.WebView.PictureListener
74 Interface android.webkit.<A HREF="../../../../reference/android/webkit/WebView.PictureListener.html" target="_top"><font size="+2"><code>WebView.PictureListener</code></font></A>
87 <A NAME="android.webkit.WebView.PictureListener.onNewPicture_changed(android.webkit.WebView, android.graphics.Picture)"></A>
88 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/webkit/WebView.PictureListener.html#onNewPicture(android.webkit.WebView, android.graphics.Picture)" target="_top"><code>onNewPicture</code></A>(<code>WebView,</nobr> Picture<nobr><nobr></code>) </nobr>
  /frameworks/webview/chromium/tools/WebViewShell/res/layout/
activity_telemetry.xml 25 <WebView
26 android:id="@+id/webview"
  /frameworks/webview/chromium/tools/buildbot/
bb_webview_tot.sh 17 # The buildbot script for the webview ToT bot.
27 WEBVIEW_TOOLS_DIR="${ANDROID_SRC_ROOT}/frameworks/webview/chromium/tools"
  /packages/apps/Browser/src/com/android/browser/
PreloadController.java 32 import android.webkit.WebView;
70 public void onSetWebView(Tab tab, WebView view) {
80 public void onPageStarted(Tab tab, WebView view, Bitmap favicon) {
94 final WebView view = tab.getWebView();
114 public void onFavicon(Tab tab, WebView view, Bitmap icon) {
119 public boolean shouldOverrideUrlLoading(Tab tab, WebView view, String url) {
147 public void onReceivedHttpAuthRequest(Tab tab, WebView view,
184 public void showSslCertificateOnError(WebView view,
Tab.java 62 import android.webkit.WebView;
63 import android.webkit.WebView.PictureListener;
85 * Class for maintaining Tabs with a main WebView and a subwindow.
133 // Main WebView wrapper
135 // Main WebView
136 private WebView mMainView;
139 // Subwindow WebView
140 private WebView mSubView;
142 // information needed to restore the WebView if the user goes back to the
166 // Keep the original url around to avoid killing the old WebView if the ur
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
MailWebView.java 5 import android.webkit.WebView;
7 public class MailWebView extends WebView {
  /external/chromium_org/third_party/WebKit/Source/web/
AutofillPopupMenuClient.cpp 108 WebViewImpl* webView = getWebView();
109 if (!webView)
124 webView->autofillClient()->didAcceptAutofillSuggestion(WebNode(getTextField()),
133 WebViewImpl* webView = getWebView();
134 if (!webView)
139 webView->autofillClient()->didSelectAutofillSuggestion(WebNode(getTextField()),
147 WebViewImpl* webView = getWebView();
148 if (webView)
149 webView->autofillClient()->didClearAutofillSelection(WebNode(getTextField()));
204 WebViewImpl* webView = getWebView()
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/17/changes/
methods_index_removals.html 59 <nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.debugDump_removed()" class="hiddenlink" target="rightframe"><strike>debugDump</strike>
61 <nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.disablePlatformNotifications_removed()" class="hiddenlink" target="rightframe"><strike>disablePlatformNotifications</strike>
72 <nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.emulateShiftHeld_removed()" class="hiddenlink" target="rightframe"><strike>emulateShiftHeld</strike>
74 <nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.enablePlatformNotifications_removed()" class="hiddenlink" target="rightframe"><strike>enablePlatformNotifications</strike>
95 <nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.getVisibleTitleHeight_removed()" class="hiddenlink" target="rightframe"><strike>getVisibleTitleHei (…)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
CustomEventTest.cpp 36 #include "WebView.h"
100 WebView* webView = FrameTestHelpers::createWebViewAndLoad(baseURL + path);
101 WebFrameImpl* frame = static_cast<WebFrameImpl*>(webView->mainFrame());
113 webView->close();
  /packages/apps/Settings/src/com/android/settings/
SettingsSafetyLegalActivity.java 28 import android.webkit.WebView;
41 private WebView mWebView;
59 mWebView = new WebView(this);
70 public void onPageFinished(WebView view, String url) {
76 public void onReceivedError(WebView view, int errorCode,
  /cts/tests/src/android/webkit/cts/
WebViewOnUiThread.java 38 import android.webkit.WebView.HitTestResult;
39 import android.webkit.WebView.PictureListener;
40 import android.webkit.WebView;
50 * Many tests need to run WebView code in the UI thread. This class
51 * wraps a WebView so that calls are ensured to arrive on the UI thread.
85 * The WebView that calls will be made on.
87 private WebView mWebView;
90 * Initializes the webView with a WebViewClient, WebChromeClient,
97 * @param webView The webView that the methods should call
    [all...]
  /frameworks/webview/chromium/java/com/android/webview/chromium/
WebViewContentsClientAdapter.java 17 package com.android.webview.chromium;
47 import android.webkit.WebView;
68 * instance. A WebViewChromium is a WebView implementation provider (that is
69 * android.webkit.WebView delegates all functionality to it) and has exactly
74 * WebView as an argument. This means that we either need to pass the
77 * allow the source WebView to be injected by ContentViewClientAdapter. We
81 // TAG is chosen for consistency with classic webview tracing.
85 // The WebView instance that this adapter is serving.
86 private final WebView mWebView;
87 // The WebViewClient instance that was passed to WebView.setWebViewClient()
    [all...]
  /external/chromium_org/third_party/WebKit/public/web/
WebPageSerializer.h 42 class WebView;
55 // Serializes all the frames from the WebView, retrieves the page's
59 WEBKIT_EXPORT static void serialize(WebView*, WebVector<Resource>*);
61 // Serializes the WebView contents to a MHTML representation.
62 WEBKIT_EXPORT static WebCString serializeToMHTML(WebView*);
66 WEBKIT_EXPORT static WebCString serializeToMHTMLUsingBinaryEncoding(WebView*);
101 WEBKIT_EXPORT static bool retrieveAllResources(WebView*,

Completed in 478 milliseconds

1 2 3 4 5 6 7 891011>>