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

<<11121314

  /external/webkit/Source/WebKit/chromium/src/
ChromeClientImpl.cpp 151 ChromeClientImpl::ChromeClientImpl(WebViewImpl* webView)
152 : m_webView(webView)
165 void* ChromeClientImpl::webView() const
722 // We only notify when the WebView has to handle the popup, as when
724 // transparent to the WebView.
PlatformBridge.cpp 124 void* webView = page->chrome()->client()->webView();
125 if (!webView)
128 return static_cast<WebViewImpl*>(webView)->client();
    [all...]
  /external/webkit/Source/WebKit/mac/Carbon/
HIWebView.mm 91 WebView* fWebView;
220 WebView*
224 WebView* result = NULL;
248 WebView *webView = [[WebView alloc] initWithFrame: frame];
249 CFRetain(webView);
250 [webView release];
251 view->fWebView = webView;
541 NSView *webView = inView->fWebView
    [all...]
  /external/webkit/Source/WebKit/win/
FullscreenVideoController.cpp 33 #include "WebView.h"
276 WebView* webView = kit(m_mediaElement->document()->page());
277 HWND parentHwnd = webView ? webView->viewWindow() : 0;
WebFrame.h 74 class WebView;
100 virtual HRESULT STDMETHODCALLTYPE webView(
381 WebView* webView() const;
382 void setWebView(WebView*);
  /packages/apps/Browser/src/com/android/browser/
Controller.java 80 import android.webkit.WebView;
326 WebView webView = t.getWebView();
330 webView.setInitialScale(scale);
406 public void onSetWebView(Tab tab, WebView view) {
413 WebView mainView = tab.getWebView();
414 WebView subView = mFactory.createWebView((mainView == null)
494 WebView view = (WebView) focusNodeMap.get("webview");
1288 final WebView webview = (WebView) v; local
    [all...]
  /cts/tests/src/android/webkit/cts/
WebViewOnUiThread.java 34 import android.webkit.WebView;
35 import android.webkit.WebView.HitTestResult;
36 import android.webkit.WebView.PictureListener;
45 * Many tests need to run WebView code in the UI thread. This class
46 * wraps a WebView so that calls are ensured to arrive on the UI thread.
80 * The WebView that calls will be made on.
82 private WebView mWebView;
85 * Initializes the webView with a WebViewClient, WebChromeClient,
92 * @param webView The webView that the methods should call
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebFrameView.mm 127 - (WebView *)_webView
129 return [_private->webFrame webView];
189 // Not retained because the WebView owns the WebFrame, which owns the WebFrameView.
256 return [WebView _viewClass:&viewClass andRepresentationClass:nil forMIMEType:MIMEType allowingPlugins:allowPlugins] ? viewClass : nil;
409 // WebView has similar code.
414 // If we couldn't find a previous valid key view, ask the WebView. This handles frameset
418 previousValidKeyView = [[[self webFrame] webView] previousValidKeyView];
435 // WebView has very similar code.
501 if ([[[self webFrame] webView] drawsBackground])
520 // Need to check _private for nil because this can be called inside -[WebView initWithCoder:]
    [all...]
WebDelegateImplementationCaching.h 29 // This header contains WebView declarations that can be used anywhere in WebKit, but are neither SPI nor API.
33 @class WebView;
101 WebResourceDelegateImplementationCache* WebViewGetResourceLoadDelegateImplementations(WebView *);
102 WebFrameLoadDelegateImplementationCache* WebViewGetFrameLoadDelegateImplementations(WebView *);
103 WebScriptDebugDelegateImplementationCache* WebViewGetScriptDebugDelegateImplementations(WebView *);
104 WebHistoryDelegateImplementationCache* WebViewGetHistoryDelegateImplementations(WebView *webView);
106 id CallFormDelegate(WebView *, SEL, id, id);
107 id CallFormDelegate(WebView *self, SEL selector, id object1, id object2, id object3, id object4, id object5);
108 BOOL CallFormDelegateReturningBoolean(BOOL, WebView *, SEL, id, SEL, id)
    [all...]
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebInspectorClient.cpp 36 #include "WebView.h"
69 WebInspectorClient::WebInspectorClient(WebView* webView)
70 : m_inspectedWebView(webView)
98 COMPtr<WebView> frontendWebView(AdoptCOM, WebView::createInstance());
207 WebInspectorFrontendClient::WebInspectorFrontendClient(WebView* inspectedWebView, HWND inspectedWebViewHwnd, HWND frontendHwnd, const COMPtr<WebView>& frontendWebView, HWND frontendWebViewHwnd, WebInspectorClient* inspectorClient, PassOwnPtr<Settings> settings)
347 // Remove the Inspector's WebView from the inspected WebView's parent window
    [all...]
  /external/webkit/Source/WebKit/wince/
WebView.cpp 27 #include "WebView.h"
59 LRESULT CALLBACK WebView::webViewWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
61 if (WebView* webView = reinterpret_cast<WebView*>(GetWindowLong(hWnd, 0)))
62 return webView->wndProc(hWnd, message, wParam, lParam);
74 WebView::WebView(HWND hwnd, unsigned features)
121 WebView::~WebView()
    [all...]
  /external/webkit/Tools/WinLauncher/
WinLauncher.cpp 63 HRESULT WinLauncherWebHost::updateAddressBar(IWebView* webView)
72 hr = webView->mainFrame(&mainFrame);
  /frameworks/base/core/java/android/webkit/
AccessibilityInjectorFallback.java 80 // WebView navigation axes from WebViewCore.h, plus an additional axis for
94 // WebView navigation directions from WebViewCore.h.
104 private final WebView mWebViewInternal;
118 // getting two empty selection strings in a row we let the WebView handle the event
136 * @param webView The associated WebViewClassic.
138 public AccessibilityInjectorFallback(WebViewClassic webView) {
139 mWebView = webView;
186 // on second null selection string in same direction - WebView handles the event
198 // on second null selection string in same direction => WebView handle the event
217 // This is a special case since we treat the default WebView navigatio
    [all...]
HTML5VideoView.java 327 HTML5VideoViewProxy proxy, WebViewClassic webView) {
  /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
EventSenderImpl.java 26 import android.webkit.WebView;
147 private WebView mWebView;
343 public void reset(WebView webView) {
344 mWebView = webView;
  /external/webkit/Source/WebCore/page/
ChromeClient.h 135 virtual void* webView() const = 0;
  /external/webkit/Source/WebKit/efl/WebCoreSupport/
FrameLoaderClientEfl.h 54 Evas_Object* webView() const { return m_view; }
  /external/webkit/Source/WebKit/gtk/tests/
testwebdatasource.c 31 WebKitWebView* webView;
  /external/webkit/Source/WebKit/mac/Plugins/Hosted/
WebHostedNetscapePluginView.mm 36 #import "WebView.h"
109 NSString *userAgent = [[self webView] userAgentForURL:_baseURL.get()];
112 accleratedCompositingEnabled = [[[self webView] preferences] acceleratedCompositingEnabled];
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebChromeClient.h 34 @class WebView;
38 WebChromeClient(WebView*);
39 virtual void* webView() const { return static_cast<void*>(m_webView); }
186 WebView *m_webView;
  /external/webkit/Source/WebKit/wince/WebCoreSupport/
FrameLoaderClientWinCE.h 33 class WebView;
39 FrameLoaderClientWinCE(WebView*);
43 WebView* webView() const { return m_webView; }
194 WebView* m_webView;
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebChromeClient.h 50 virtual void* webView() const { return 0; }
  /external/webkit/Tools/DumpRenderTree/win/
AccessibilityControllerWin.cpp 90 if (FAILED(frame->webView(&view)))
102 // WebView's window.
167 // Ensure that accessibility is initialized for the WebView by querying for
187 // Ensure that accessibility is initialized for the WebView by querying for
207 // Ensure that accessibility is initialized for the WebView by querying for
  /external/webkit/Tools/MiniBrowser/win/
BrowserWindow.cpp 222 HWND webViewWindow = WKViewGetWindow(m_browserView.webView());
  /external/webkit/Source/WebKit/mac/Plugins/
WebNetscapePluginView.mm     [all...]

Completed in 1061 milliseconds

<<11121314