HomeSort by relevance Sort by last modified time
    Searched refs:WebView (Results 176 - 200 of 224) sorted by null

1 2 3 4 5 6 78 9

  /external/webkit/WebKit/win/Interfaces/
WebKit.idl 156 coclass WebView {
  /external/webkit/WebKit/win/WebCoreSupport/
WebDragClient.cpp 30 #include "WebView.h"
88 WebDragClient::WebDragClient(WebView* webView)
89 : m_webView(webView)
91 ASSERT(webView);
148 COMPtr<WebView> viewProtector = m_webView;
WebInspectorClient.cpp 36 #include "WebView.h"
72 WebInspectorClient::WebInspectorClient(WebView* webView)
73 : m_inspectedWebView(webView)
116 m_webView.adoptRef(WebView::createInstance());
328 // Remove the Inspector's WebView from the inspected WebView's parent window.
357 // Put the Inspector's WebView inside our window and show it.
366 // Put the Inspector's WebView inside the inspected WebView's parent window
    [all...]
  /external/webkit/WebKit/win/
WebFrame.h 73 class WebView;
99 virtual HRESULT STDMETHODCALLTYPE webView(
348 WebView* webView() const;
WebNodeHighlight.cpp 32 #include "WebView.h"
50 WebNodeHighlight::WebNodeHighlight(WebView* webView)
51 : m_inspectedWebView(webView)
  /frameworks/base/core/java/android/webkit/
HTML5VideoViewProxy.java 86 // The WebView instance that created this view.
87 private WebView mWebView;
257 // the video view and to return to the WebView.
462 * @param webView is the WebView that hosts the video.
465 private HTML5VideoViewProxy(WebView webView, int nativePtr) {
468 // Save the WebView object.
469 mWebView = webView;
WebTextView.java 57 * WebTextView is a specialized version of EditText used by WebView
65 private WebView mWebView;
79 // Variables for keeping track of the touch down, to send to the WebView
117 * @param webView The WebView that created this.
119 /* package */ WebTextView(Context context, WebView webView) {
121 mWebView = webView;
268 // if it is a navigation key, pass it to WebView
270 // WebView check the trackballtime in onKeyDown to avoid callin
    [all...]
WebView.java 114 * in a WebView, you must add the {@code INTERNET} permissions to your
122 * <p>See the <a href="{@docRoot}resources/tutorials/views/hello-webview.html">Web View
127 * <p>By default, a WebView provides no browser-like widgets, does not
134 * with a WebView. For example:
142 * <p>To provide a WebView in your own Activity, include a {@code &lt;WebView&gt;} in your layout,
143 * or set the entire Activity window as a WebView during {@link
146 * WebView webview = new WebView(this)
    [all...]
  /external/webkit/WebKit/chromium/src/
WebWorkerBase.cpp 42 #include "WebView.h"
124 m_webView = WebView::create(0);
WebDevToolsFrontendImpl.cpp 84 WebView* view,
  /external/webkit/WebKit/mac/Plugins/
WebNetscapePluginView.h 43 @class WebView;
WebPluginController.mm 209 BOOL oldDefersCallbacks = [[self webView] defersCallbacks];
211 [[self webView] setDefersCallbacks:YES];
223 [[self webView] setDefersCallbacks:NO];
369 WebView *v = [_dataSource _webView];
370 [[v _UIDelegateForwarder] webView:v setStatusText:message];
398 - (WebView *)webView
400 return [[self webFrame] webView];
  /external/webkit/WebKit/mac/WebView/
WebFrame.mm 222 Page* core(WebView *webView)
224 return [webView page];
227 WebView *kit(Page* page)
229 return page ? static_cast<WebChromeClient*>(page->chrome()->client())->webView() : nil;
232 WebView *getWebView(WebFrame *webFrame)
242 WebView *webView = kit(page);
244 WebFrame *frame = [[self alloc] _initWithWebFrameView:frameView webView:webView];
    [all...]
WebHTMLRepresentation.mm 43 #import "WebView.h"
205 WebView *webView = [frame webView];
206 if ([webView isEditable])
WebPDFView.mm 47 #import "WebView.h"
364 WebView *webView = [[dataSource webFrame] webView];
365 ASSERT(webView);
366 NSMenu *menu = [webView _menuForElement:[self elementAtPoint:[self convertPoint:[theEvent locationInWindow] fromView:nil]] defaultItems:items];
497 // assumes the WebVIew is non-nil.
501 return CallUIDelegateReturningBoolean(result, [self _webView], @selector(webView:validateUserInterfaceItem:defaultValidation:), item, result);
    [all...]
WebFrameView.mm 126 - (WebView *)_webView
128 return [_private->webFrame webView];
188 // Not retained because the WebView owns the WebFrame, which owns the WebFrameView.
250 return [WebView _viewClass:&viewClass andRepresentationClass:nil forMIMEType:MIMEType allowingPlugins:allowPlugins] ? viewClass : nil;
411 // WebView has similar code.
416 // If we couldn't find a previous valid key view, ask the WebView. This handles frameset
420 previousValidKeyView = [[[self webFrame] webView] previousValidKeyView];
437 // WebView has very similar code.
503 if ([[[self webFrame] webView] drawsBackground])
516 // Need to check _private for nil because this can be called inside -[WebView initWithCoder:]
    [all...]
  /external/webkit/WebKit/wx/bindings/python/samples/
simple.py 28 import wx.webview namespace
47 self.webview = wx.webview.WebView(self, -1)
83 sizer.Add(self.webview, 1, wx.EXPAND)
85 self.webview.LoadURL(self.current)
88 self.webview.Bind(wx.webview.EVT_WEBVIEW_LOAD, self.OnStateChanged)
95 if event.GetState() == wx.webview.WEBVIEW_LOAD_NEGOTIATING:
97 elif event.GetState() == wx.webview.WEBVIEW_LOAD_TRANSFERRING
    [all...]
  /external/webkit/WebKitTools/DumpRenderTree/mac/
TextInputController.m 40 #import <WebKit/WebView.h>
201 - (id)initWithWebView:(WebView *)wv
204 webView = wv;
220 NSView <NSTextInput> *view = inputMethodView ? inputMethodView : (id)[[[webView mainFrame] frameView] documentView];
330 rect.origin = [[webView window] convertScreenToBase:rect.origin];
331 rect = [webView convertRect:rect fromView:nil];
350 point = [webView convertPoint:point toView:nil];
351 point = [[webView window] convertBaseToScreen:point];
PixelDumpSupportMac.mm 109 WebView* view = [mainFrame webView];
165 // (displayWebView() painted gray over the webview, but we'll be making everything repaint again).
  /external/webkit/WebKitTools/DumpRenderTree/win/
LayoutTestControllerWin.cpp 61 COMPtr<IWebView> webView;
62 if (FAILED(frame->webView(&webView)))
65 // reset webview-related states back to default values in preparation for next test
68 if (SUCCEEDED(webView->QueryInterface(&viewPrivate)))
72 if (FAILED(webView->QueryInterface(&viewEditing)))
89 COMPtr<IWebView> webView;
90 if (FAILED(frame->webView(&webView)))
94 if (FAILED(webView->backForwardList(&backForwardList))
    [all...]
  /packages/apps/Browser/src/com/android/browser/
FindDialog.java 31 import android.webkit.WebView;
46 // (or the text needs to be changed) before WebView.findAll can be called.
61 throw new AssertionError("No WebView for FindDialog::onClick");
101 * the dialog, inform the WebView that the dialog is being dismissed,
152 throw new AssertionError("No WebView for FindDialog::findNext");
194 "No WebView for FindDialog::findAll");
  /external/webkit/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/WebKit/mac/WebCoreSupport/
WebContextMenuClient.mm 41 #import "WebView.h"
55 WebContextMenuClient::WebContextMenuClient(WebView *webView)
56 : m_webView(webView)
274 SEL selector = @selector(webView:contextMenuItemsForElement:defaultMenuItems:);
306 SEL selector = @selector(webView:contextMenuItemSelected:forElement:);
WebChromeClient.mm 46 #import "WebView.h"
107 WebChromeClient::WebChromeClient(WebView *webView)
108 : m_webView(webView)
117 // These functions scale between window and WebView coordinates because JavaScript/DOM operations
118 // assume that the WebView and the window share the same coordinate system.
123 [[m_webView _UIDelegateForwarder] webView:m_webView setFrame:windowRect];
170 // avoid triggering assertions if the WebView is the only thing in the key loop
175 // avoid triggering assertions if the WebView is the only thing in the key loop
193 WebView *newWebView
    [all...]
WebEditorClient.mm 167 WebEditorClient::WebEditorClient(WebView *webView)
168 : m_webView(webView)
212 return [[m_webView _editingDelegateForwarder] webView:m_webView
218 return [[m_webView _editingDelegateForwarder] webView:m_webView
234 return [[m_webView _editingDelegateForwarder] webView:m_webView
240 return [[m_webView _editingDelegateForwarder] webView:m_webView
246 return [[m_webView _editingDelegateForwarder] webView:m_webView
254 return [[m_webView _editingDelegateForwarder] webView:m_webView
260 WebView* webView = m_webView
    [all...]

Completed in 812 milliseconds

1 2 3 4 5 6 78 9