/external/webkit/Source/WebKit2/UIProcess/mac/ |
WKFullScreenWindowController.h | 59 - (WKView*)webView; 60 - (void)setWebView:(WKView*)webView;
|
WebContextMenuProxyMac.h | 41 static PassRefPtr<WebContextMenuProxyMac> create(WKView* webView, WebPageProxy* page) 43 return adoptRef(new WebContextMenuProxyMac(webView, page));
|
WebPopupMenuProxyMac.h | 41 static PassRefPtr<WebPopupMenuProxyMac> create(WKView *webView, WebPopupMenuProxy::Client* client) 43 return adoptRef(new WebPopupMenuProxyMac(webView, client));
|
/external/webkit/Tools/QtTestBrowser/ |
QtTestBrowser.pro | 11 webview.cpp \ 22 webview.h \
|
/external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/win/ |
WMPrint.cpp | 37 PlatformWebView webView(context.get()); 39 HWND window = WKViewGetWindow(webView.platformView());
|
ResizeViewWhileHidden.cpp | 93 PlatformWebView webView(context.get()); 95 HWND window = WKViewGetWindow(webView.platformView()); 105 webView.resizeTo(newRect.right - newRect.left, newRect.bottom - newRect.top); 107 waitForBackingStoreUpdate(webView.page()); 112 webView.resizeTo(originalRect.right - originalRect.left, originalRect.bottom - originalRect.top); 122 waitForBackingStoreUpdate(webView.page());
|
/external/webkit/Tools/WebKitTestRunner/ |
PlatformWebView.h | 31 class WebView; 33 typedef WTR::WebView* PlatformWKView;
|
/packages/apps/Browser/res/layout/ |
tab.xml | 18 WebView and any number of other UI elements specific to that tab. 28 <!-- Wrapper layout for the WebView, which must be in a FrameLayout. -->
|
/external/webkit/Source/WebKit/mac/WebView/ |
WebFrameInternal.h | 69 WebCore::Page* core(WebView *); 70 WebView *kit(WebCore::Page*); 76 WebView *getWebView(WebFrame *webFrame); 97 - (id)_initWithWebFrameView:(WebFrameView *)webFrameView webView:(WebView *)webView;
|
WebPreferences.h | 40 @abstract Specifies a usage model for a WebView, which WebKit will use to 43 @constant WebCacheModelDocumentViewer Appropriate for a WebView displaying 45 document -- with no UI for navigation. The WebView will behave like any other 51 @constant WebCacheModelDocumentBrowser Appropriate for a WebView displaying 53 example, a reference materials browser or a website designer. The WebView will 59 @constant WebCacheModelPrimaryWebBrowser Appropriate for a WebView in the 60 application that acts as the user's primary web browser. The WebView will cache 96 identifier on a WebView. The identifier is used as a prefix that is added to the user defaults keys 408 @abstract Specifies a usage model for a WebView, which WebKit will use to 411 @param cacheModel The WebView's usage model for WebKit. If necessary, WebKit [all...] |
WebViewEventHandling.mm | 53 @implementation WebView (WebViewEventHandling) 55 static WebView *lastMouseoverView; 91 RetainPtr<WebView> protector = self; 158 WebView *oldView = lastMouseoverView; 165 if ([hitView isKindOfClass:[WebView class]]) { 166 lastMouseoverView = static_cast<WebView *>(hitView); 237 // FIXME (Viewless): Code to handle tooltips needs to move into WebView.
|
/external/webkit/Source/WebKit/win/ |
DefaultPolicyDelegate.cpp | 101 /*[in]*/ IWebView* webView, 113 COMPtr<IWebViewPrivate> wvPrivate(Query, webView); 136 /*[in]*/ IWebView* /*webView*/, 147 /*[in]*/ IWebView* webView, 154 if (FAILED(webView->canShowMIMEType(type, &canShowMIMEType))) 181 /*[in]*/ IWebView* /*webView*/,
|
WebFrame.cpp | 54 #include "WebView.h" 233 , webView(0) 242 WebView* webView; 446 HRESULT STDMETHODCALLTYPE WebFrame::webView( 450 if (!d->webView) 452 *view = d->webView; 1087 PassRefPtr<Frame> WebFrame::init(IWebView* webView, Page* page, HTMLFrameOwnerElement* ownerElement) 1089 webView->QueryInterface(&d->webView); [all...] |
/external/webkit/Source/WebKit/win/WebCoreSupport/ |
WebDragClient.cpp | 30 #include "WebView.h" 59 WebDragClient::WebDragClient(WebView* webView) 60 : m_webView(webView) 62 ASSERT(webView); 119 COMPtr<WebView> viewProtector = m_webView;
|
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/WebKit2/UIProcess/win/ |
WebPopupMenuProxyWin.h | 41 class WebView; 45 static PassRefPtr<WebPopupMenuProxyWin> create(WebView* webView, WebPopupMenuProxy::Client* client) 47 return adoptRef(new WebPopupMenuProxyWin(webView, client)); 59 WebPopupMenuProxyWin(WebView*, WebPopupMenuProxy::Client*); 121 WebView* m_webView;
|
/packages/apps/Settings/src/com/android/settings/ |
SettingsLicenseActivity.java | 25 import android.webkit.WebView; 54 private WebView mWebView; 145 mWebView = new WebView(this); 186 // Create an AlertDialog to display the WebView in. 200 // Begin the loading. This will be done in a separate thread in WebView. 204 public void onPageFinished(WebView view, String url) {
|
/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/Tools/DumpRenderTree/gtk/ |
DumpRenderTree.cpp | 80 static WebKitWebView* webView; 126 gtk_widget_queue_draw(GTK_WIDGET(webView)); 269 bool isMainFrame = (webkit_web_view_get_main_frame(webView) == frame); 384 // Dump the back forward list of the main WebView first 385 dumpBackForwardListForWebView(webView); 405 WebKitWebSettings* settings = webkit_web_view_get_settings(webView); 439 webkit_web_view_set_settings(webView, settings); 444 WebKitWebInspector* inspector = webkit_web_view_get_inspector(webView); 447 webkit_web_view_set_zoom_level(webView, 1.0); 448 DumpRenderTreeSupportGtk::setMinimumTimerInterval(webView, DumpRenderTreeSupportGtk::defaultMinimumTimerInterval()) [all...] |
/external/webkit/Tools/DumpRenderTree/win/ |
UIDelegate.cpp | 282 /* [in] */ IWebView *webView, 289 /* [in] */ IWebView *webView, 300 /* [in] */ IWebView *webView, 310 /* [in] */ IWebView *webView, 320 /* [in] */ IWebView *webView, 328 /* [in] */ IWebView *webView, 338 /* [in] */ IWebView *webView, 345 /* [in] */ IWebView *webView, 360 /* [in] */ IWebView *webView) 366 /* [in] */ IWebView *webView, [all...] |
DumpRenderTree.cpp | 622 static void dumpBackForwardList(IWebView* webView) 624 ASSERT(webView); 629 if (FAILED(webView->backForwardList(&bfList))) 691 IWebView* webView = windowToWebViewMap().get(window).get(); 692 dumpBackForwardList(webView); 888 COMPtr<IWebView> webView; 889 if (FAILED(frame->webView(&webView))) 892 webView->setPolicyDelegate(0); 896 COMPtr<IWebIBActions> webIBActions(Query, webView); [all...] |
EditingDelegate.cpp | 122 /* [in] */ IWebView* webView, 139 /* [in] */ IWebView* webView, 156 /* [in] */ IWebView* webView, 174 /* [in] */ IWebView* webView, 199 /* [in] */ IWebView* webView, 216 /* [in] */ IWebView* webView, 245 /* [in] */ IWebView* webView, 263 /* [in] */ IWebView* webView, 281 /* [in] */ IWebView *webView,
|
/frameworks/base/docs/html/sdk/api_diff/17/changes/ |
alldiffs_index_removals.html | 79 <nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.debugDump_removed()" class="hiddenlink" target="rightframe"><strike>debugDump</strike> 82 <nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.disablePlatformNotifications_removed()" class="hiddenlink" target="rightframe"><strike>disablePlatformNotifications</strike> 97 <nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.emulateShiftHeld_removed()" class="hiddenlink" target="rightframe"><strike>emulateShiftHeld</strike> 100 <nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.enablePlatformNotifications_removed()" class="hiddenlink" target="rightframe"><strike>enablePlatformNotifications</strike> 130 <nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.getVisibleTitleHeight_removed()" class="hiddenlink" target="rightframe"><strike>getVisibleTitleHei (…) [all...] |
/frameworks/base/core/java/android/webkit/ |
JWebCoreJavaBridge.java | 70 static synchronized void setActiveWebView(WebViewClassic webview) { 72 // it is possible if there is a sub-WebView. Do nothing. 75 sCurrentMainWebView = new WeakReference<WebViewClassic>(webview); 78 static synchronized void removeActiveWebView(WebViewClassic webview) { 79 if (sCurrentMainWebView.get() != webview) { 80 // it is possible if there is a sub-WebView. Do nothing. 269 Log.e(LOGTAG, "There is no active WebView for getSignedPublicKey");
|
/frameworks/base/docs/html/sdk/api_diff/14/changes/ |
android.webkit.WebView.HitTestResult.html | 10 android.webkit.WebView.HitTestResult 74 Class android.webkit.<A HREF="../../../../reference/android/webkit/WebView.HitTestResult.html" target="_top"><font size="+2"><code>WebView.HitTestResult</code></font></A> 87 <A NAME="android.webkit.WebView.HitTestResult.ANCHOR_TYPE"></A> 88 <nobr><code>int</code> <A HREF="../../../../reference/android/webkit/WebView.HitTestResult.html#ANCHOR_TYPE" target="_top"><code>ANCHOR_TYPE</code></font></A></nobr> </TD> 96 <A NAME="android.webkit.WebView.HitTestResult.IMAGE_ANCHOR_TYPE"></A> 97 <nobr><code>int</code> <A HREF="../../../../reference/android/webkit/WebView.HitTestResult.html#IMAGE_ANCHOR_TYPE" target="_top"><code>IMAGE_ANCHOR_TYPE</code></font></A></nobr> </TD>
|