HomeSort by relevance Sort by last modified time
    Searched refs:webView (Results 251 - 275 of 328) sorted by null

<<11121314

  /external/webkit/Source/WebKit/chromium/src/
ChromeClientImpl.h 55 // Handles window-level notifications from WebCore on behalf of a WebView.
58 explicit ChromeClientImpl(WebViewImpl* webView);
61 virtual void* webView() const;
EditorClientImpl.h 49 EditorClientImpl(WebViewImpl* webView);
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
TextCheckerClientEnchant.cpp 40 TextCheckerClientEnchant::TextCheckerClientEnchant(WebKitWebView* webView)
41 : m_webView(webView)
ChromeClientGtk.h 40 WebKitWebView* webView() const { return m_webView; }
DumpRenderTreeSupportGtk.h 58 static void dumpConfigurationForViewport(WebKitWebView* webView, gint deviceDPI, gint deviceWidth, gint deviceHeight, gint availableWidth, gint availableHeight);
99 static double defaultMinimumTimerInterval(); // Not really tied to WebView
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
QtFallbackWebPopup.cpp 139 if (QGraphicsWebView *webView = qobject_cast<QGraphicsWebView*>(pageClient()->pluginParent())) {
140 QGraphicsProxyWidget* proxy = new QGraphicsProxyWidget(webView);
  /external/webkit/Source/WebKit/win/Interfaces/
IWebFrame.idl 76 @method webView
77 @result Returns the WebView for the document that includes this frame.
78 - (WebView *)webView;
80 HRESULT webView([out, retval] IWebView** view);
134 @discussion This allows clients to display page-loading errors in the webview itself.
136 -webView:didFailProvisionalLoadWithError:forFrame: or one of the the WebPolicyDelegate methods
137 -webView:decidePolicyForMIMEType:request:frame:decisionListener: or
138 -webView:unableToImplementPolicyWithError:frame:. If it is called from within one of those
194 rest of the frames in the WebView. If still not found, findFrameNamed searches th
    [all...]
  /external/webkit/Source/WebKit/win/
WebNodeHighlight.cpp 32 #include "WebView.h"
48 WebNodeHighlight::WebNodeHighlight(WebView* webView)
49 : m_inspectedWebView(webView)
  /external/webkit/Source/WebKit/wince/WebCoreSupport/
ChromeClientWinCE.cpp 34 #include "WebView.h"
41 ChromeClientWinCE::ChromeClientWinCE(WebView* webView)
42 : m_webView(webView)
ChromeClientWinCE.h 30 class WebView;
36 ChromeClientWinCE(WebView* webView);
180 WebView* m_webView;
EditorClientWinCE.cpp 38 EditorClientWinCE::EditorClientWinCE(WebView* webView)
39 : m_webView(webView)
  /frameworks/base/core/java/android/webkit/
AutoCompletePopup.java 54 public AutoCompletePopup(WebViewClassic webView,
57 mWebView = webView;
178 // Call a webview method to tell WebCore to autofill the form.
HTML5Audio.java 38 * accessing the WebView object to determine whether private browsing is
95 // given WebView. Queries the WebView on the UI thread. Calls to get()
100 IsPrivateBrowsingEnabledGetter(Looper uiThreadLooper, final WebViewClassic webView) {
105 mIsPrivateBrowsingEnabled = webView.isPrivateBrowsingEnabled();
AccessibilityInjector.java 63 private final WebView mWebView;
401 Log.d(TAG, "[" + mWebView.hashCode() + "] Loading screen reader into WebView");
449 // Respect the WebView's JavaScript setting.
576 * @return {@code true} if JavaScript is enabled in the {@link WebView}
683 context, mInitListener, null, pkgName + ".**webview**", true);
826 * @param webView The WebView to perform the action on.
830 private boolean performAction(WebView webView, String code) {
834 webView.loadUrl(url)
    [all...]
  /packages/apps/Browser/src/com/android/browser/
UrlHandler.java 30 import android.webkit.WebView;
61 boolean shouldOverrideUrlLoading(Tab tab, WebView view, String url) {
73 Uri.parse(WebView.SCHEME_TEL +
241 private WebView mWebView;
243 public RLZTask(Tab tab, Uri uri, WebView webView) {
246 mWebView = webView;
  /external/webkit/Source/WebKit/mac/WebView/
WebHTMLView.mm 701 - (WebView *)_webView
894 WebView *webView = [[self _webView] retain];
895 [webView _setInsertionPasteboard:pasteboard];
    [all...]
WebHTMLRepresentation.mm 43 #import "WebView.h"
222 WebView *webView = [webFrame webView];
223 if ([webView isEditable])
  /external/chromium/webkit/glue/
cpp_bound_class_unittest.cc 16 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h"
92 webframe_ = test_shell_->webView()->mainFrame();
  /external/webkit/Source/WebKit/android/WebCoreSupport/
ChromeClientAndroid.h 193 virtual void* webView() const { return 0; }
  /external/webkit/Source/WebKit2/UIProcess/
TiledDrawingAreaProxy.cpp 45 PassOwnPtr<TiledDrawingAreaProxy> TiledDrawingAreaProxy::create(PlatformWebView* webView, WebPageProxy* webPageProxy)
47 return adoptPtr(new TiledDrawingAreaProxy(webView, webPageProxy));
50 TiledDrawingAreaProxy::TiledDrawingAreaProxy(PlatformWebView* webView, WebPageProxy* webPageProxy)
54 , m_webView(webView)
TiledDrawingAreaProxy.h 59 class WebView;
60 typedef WebView PlatformWebView;
67 static PassOwnPtr<TiledDrawingAreaProxy> create(PlatformWebView* webView, WebPageProxy*);
  /external/webkit/Tools/DumpRenderTree/chromium/
TestShell.h 54 class WebView;
86 // The main WebView.
87 WebKit::WebView* webView() const { return m_webView; }
88 // Returns the host for the main WebView.
179 void resetWebSettings(WebKit::WebView&);
187 WebKit::WebView* m_webView;
  /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
LayoutTestsExecutor.java 47 import android.webkit.WebView;
58 * This activity executes the test. It contains WebView and logic of LayoutTestController
100 private WebView mCurrentWebView;
153 /** WEBVIEW CONFIGURATION */
157 public void onPageFinished(WebView view, String url) {
169 public void onReceivedHttpAuthRequest(WebView view, HttpAuthHandler handler,
182 public void onReceivedSslError(WebView view, SslErrorHandler handler, SslError error) {
204 public boolean onJsAlert(WebView view, String url, String message, JsResult result) {
211 public boolean onJsConfirm(WebView view, String url, String message, JsResult result) {
218 public boolean onJsPrompt(WebView view, String url, String message, String defaultValue
    [all...]
  /external/webkit/Source/WebCore/plugins/symbian/
PluginViewSymbian.cpp 404 if (QGraphicsWebView *webView = qobject_cast<QGraphicsWebView*>(client->pluginParent()))
405 proxy = new QGraphicsProxyWidget(webView);
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/res/
ViewLoaderTest.java 9 import android.webkit.WebView;
127 WebView webView = (WebView) view.findViewById(R.id.web_view);
129 webView.loadUrl("www.example.com");
131 assertThat(shadowOf(webView).getLastLoadedUrl(), equalTo("www.example.com"));

Completed in 638 milliseconds

<<11121314