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

<<1112131415

  /external/webkit/Source/WebKit/win/
WebInspector.cpp 33 #include "WebView.h"
40 WebInspector* WebInspector::createInstance(WebView* webView)
42 WebInspector* inspector = new WebInspector(webView);
47 WebInspector::WebInspector(WebView* webView)
49 , m_webView(webView)
51 ASSERT_ARG(webView, webView);
WebFrame.h 74 class WebView;
100 virtual HRESULT STDMETHODCALLTYPE webView(
381 WebView* webView() const;
382 void setWebView(WebView*);
  /external/webkit/Source/WebKit/wx/bindings/python/
webview.i 26 %module webview
38 #include "WebView.h"
163 %include WebView.h
  /external/webkit/Tools/DumpRenderTree/mac/
WorkQueueItemMac.mm 38 #import <WebKit/WebView.h>
74 [[mainFrame webView] reload:nil];
82 [[mainFrame webView] stringByEvaluatingJavaScriptFromString:scriptNS];
89 [[mainFrame webView] goForward];
91 [[mainFrame webView] goBack];
93 WebBackForwardList *bfList = [[mainFrame webView] backForwardList];
94 [[mainFrame webView] goToBackForwardItem:[bfList itemAtIndex:m_howFar]];
  /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
TextResult.java 22 import android.webkit.WebView;
227 public void obtainActualResults(WebView webview, Message resultObtainedMsg) {
237 WebViewClassic.fromWebView(webview).documentAsText(msg);
EventSenderImpl.java 26 import android.webkit.WebView;
147 private WebView mWebView;
343 public void reset(WebView webView) {
344 mWebView = webView;
  /frameworks/base/tests/TileBenchmark/src/com/test/tilebenchmark/
ProfiledWebView.java 24 import android.webkit.WebView;
32 public class ProfiledWebView extends WebView implements WebViewClassic.PageSwapDelegate {
  /packages/apps/Browser/src/com/android/browser/
DownloadTouchIcon.java 39 import android.webkit.WebView;
61 public DownloadTouchIcon(Tab tab, Context ctx, ContentResolver cr, WebView view) {
NavigationBarBase.java 31 import android.webkit.WebView;
129 WebView currentTopWebView = mUiController.getCurrentTopWebView();
XLargeUi.java 34 import android.webkit.WebView;
135 // WebView callbacks
153 // so the tab is guaranteed to have a webview
155 Log.e(LOGTAG, "active tab with no webview detected");
247 WebView web = mActiveTab.getWebView();
BrowserSettings.java 44 import android.webkit.WebView;
315 // WebView inside Browser doesn't want initial focus to be set.
343 // WebView should be preserving the memory as much as possible.
470 WebView current = mController.getCurrentWebView();
490 WebView currentTopView = mController.getCurrentTopWebView();
543 public boolean hasDesktopUseragent(WebView view) {
547 public void toggleDesktopUseragent(WebView view) {
    [all...]
PieControl.java 27 import android.webkit.WebView;
121 WebView view = mUiController.getCurrentWebView();
199 WebView web = tab.getWebView();
NavigationBarPhone.java 27 import android.webkit.WebView;
146 WebView web = mBaseUi.getWebView();
  /external/webkit/Tools/DumpRenderTree/chromium/
WebViewHost.h 72 WebKit::WebView* webView() const;
113 virtual WebKit::WebView* createView(WebKit::WebFrame*, const WebKit::WebURLRequest&, const WebKit::WebWindowFeatures&, const WebKit::WebString&);
249 void updateAddressBar(WebKit::WebView*);
  /development/samples/Wiktionary/src/com/example/android/wiktionary/
ExtendedWikiHelper.java 25 import android.webkit.WebView;
80 * Mime-type to use when showing parsed results in a {@link WebView}.
85 * Encoding to use when showing parsed results in a {@link WebView}.
235 * @return HTML formatted content, ready for display in {@link WebView}.
  /external/chromium/webkit/glue/
webkit_glue.h 38 class WebView;
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebDesktopNotificationsDelegate.cpp 34 #include "WebView.h"
144 WebDesktopNotificationsDelegate::WebDesktopNotificationsDelegate(WebView* webView)
145 : m_webView(webView)
  /external/webkit/Source/WebKit2/UIProcess/win/
WebInspectorProxyWin.cpp 34 #include "WebView.h"
159 m_inspectorView = WebView::create(emptyRect, m_page->process()->context(), inspectorPageGroup(), 0);
  /frameworks/base/core/java/android/webkit/
WebCoreThreadWatchdog.java 128 // This can happen during the initialisation of the WebView.
169 // Check each WebView we are aware of and find one that is capable of
172 WebView activeView = it.next().getWebView();
181 // WebView so we've made our best attempt to display the
193 // There's no active webview we can use to show the dialog, so
  /external/webkit/Source/WebKit/chromium/src/
WebViewImpl.h 39 #include "WebView.h"
89 class WebViewImpl : public WebView, public RefCounted<WebViewImpl> {
116 // WebView methods:
261 // based on the Webkit function bool WebView::handleContextMenuEvent(WPARAM
262 // wParam, LPARAM lParam) in webkit\webkit\win\WebView.cpp. The only
267 // Notifies the WebView that a load has been committed. isNewNavigation
281 // Set the disposition for how this webview is to be initially shown.
364 friend class WebView; // So WebView::Create can call our constructor
474 // The policy for how this webview is to be initially shown
    [all...]
  /external/webkit/Source/WebKit/mac/Plugins/
WebPluginContainerCheck.mm 35 #import "WebView.h"
121 WebView *webView = [_controller webView];
136 [[webView _policyDelegateForwarder] webView:webView
143 [[webView _policyDelegateForwarder] webView:webView
    [all...]
WebPluginDatabase.mm 321 if ([WebView canShowMIMETypeAsHTML:MIMEType])
333 [WebView _registerPluginMIMEType:MIMEType];
453 [WebView _unregisterPluginMIMEType:MIMEType];
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebDragClient.mm 54 WebDragClient::WebDragClient(WebView* webView)
55 : m_webView(webView)
68 return (WebCore::DragDestinationAction)[[m_webView _UIDelegateForwarder] webView:m_webView dragDestinationActionMaskForDraggingInfo:dragData->platformData()];
73 [[m_webView _UIDelegateForwarder] webView:m_webView willPerformDragDestinationAction:(WebDragDestinationAction)action forDraggingInfo:dragData->platformData()];
80 return (DragSourceAction)[[m_webView _UIDelegateForwarder] webView:m_webView dragSourceActionMaskForPoint:viewPoint];
86 [[m_webView _UIDelegateForwarder] webView:m_webView willPerformDragSourceAction:(WebDragSourceAction)action fromPoint:mouseDownPoint withPasteboard:static_cast<WebCore::ClipboardMac*>(clipboard)->pasteboard()];
109 SEL selector = @selector(webView:dragImage:at:offset:event:pasteboard:source:slideBack:forView:);
113 [delegate webView:m_webView dragImage:dragNSImage at:at offset:NSZeroSize event:event pasteboard:pasteboard source:sourceHTMLView slideBack:YES forView:topHTMLView];
118 [delegate webView:m_webView dragImage:dragNSImage at:at offset:NSZeroSize event:event pasteboard:pasteboard source:s (…)
    [all...]
  /external/webkit/Source/WebKit/mac/WebInspector/
WebInspector.mm 43 - (id)initWithWebView:(WebView *)webView
47 _webView = webView; // not retained to prevent a cycle
226 _webView = [frame webView];
  /external/webkit/Source/WebKit/mac/WebView/
WebFullScreenController.mm 167 - (WebView*)webView
172 - (void)setWebView:(WebView *)webView
174 [webView retain];
176 _webView = webView;
284 // Move the webView into our fullscreen Window
289 // assuming the placeholder's window will always be the webView's
292 WebView* webView = [self webView]
    [all...]

Completed in 410 milliseconds

<<1112131415