HomeSort by relevance Sort by last modified time
    Searched refs:WebView (Results 101 - 125 of 225) sorted by null

1 2 3 45 6 7 8 9

  /external/webkit/WebKit/qt/tests/hybridPixmap/
widget.h 28 typedef QWebView WebView;
  /external/webkit/WebKit/win/WebCoreSupport/
WebChromeClient.h 34 class WebView;
41 WebChromeClient(WebView*);
129 WebView* webView() const { return m_webView; }
163 WebView* m_webView;
WebGeolocationControllerClient.cpp 31 #include "WebView.h"
35 WebGeolocationControllerClient::WebGeolocationControllerClient(WebView* webView)
36 : m_webView(webView)
WebPluginHalterClient.cpp 31 #include "WebView.h"
37 WebPluginHalterClient::WebPluginHalterClient(WebView* webView)
38 : m_webView(webView)
40 ASSERT_ARG(webView, webView);
  /external/webkit/WebKitTools/DumpRenderTree/mac/
AppleScriptController.m 33 #import <WebKit/WebView.h>
53 - (id)initWithWebView:(WebView *)wv
56 webView = wv;
112 NSAppleEventDescriptor *aeDesc = [webView aeDescByEvaluatingJavaScriptFromString:aString];
  /external/webkit/WebKit/chromium/public/
WebViewClient.h 54 class WebView;
61 // Since a WebView is a WebWidget, a WebViewClient is a WebWidgetClient.
68 // Create a new related WebView. This method must clone its session storage
71 virtual WebView* createView(WebFrame* creator) { return 0; }
78 // Create a session storage namespace object associated with this WebView.
99 // These notifications bracket any loading that occurs in the WebView.
130 // This method is called in response to WebView's handleInputEvent()
227 // Take focus away from the WebView by focusing an adjacent UI element
262 // changed and should be saved. See WebView::inspectorSettings.
  /external/webkit/WebKit/wx/bindings/python/
webview.i 26 %module webview
36 #include "WebView.h"
54 %include WebView.h
  /external/webkit/WebKit/mac/Misc/
WebCache.mm 30 #import "WebView.h"
114 WebCacheModel cacheModel = [WebView _cacheModel];
115 [WebView _setCacheModel:WebCacheModelDocumentViewer];
116 [WebView _setCacheModel:cacheModel];
WebKit.h 52 #import <WebKit/WebView.h>
WebNSViewExtras.m 38 #import <WebKit/WebView.h>
63 - (WebView *)_webView
65 return (WebView *)[self _web_superviewOfClass:[WebView class]];
  /external/webkit/WebKit/mac/WebView/
WebView.h 67 @discussion Notifications sent by WebView to mark the progress of loads.
68 @constant WebViewProgressStartedNotification Posted whenever a load begins in the WebView, including
73 @constant WebViewProgressFinishedNotification Posted when the load for a WebView has finished.
81 @class WebView
82 WebView manages the interaction between WebFrameViews and WebDataSources. Modification
90 WebView *webView;
93 webView = [[WebView alloc] initWithFrame: NSMakeRect (0,0,640,480)];
94 mainFrame = [webView mainFrame]
    [all...]
WebViewInternal.h 29 // This header contains WebView declarations that can be used anywhere in WebKit, but are neither SPI nor API.
54 @interface WebView (WebViewEditingExtras)
59 @interface WebView (AllWebViews)
65 @interface WebView (WebViewInternal)
91 @interface WebView (WebViewEventHandling)
99 // FIXME: Temporary way to expose methods that are in the wrong category inside WebView.
100 @interface WebView (WebViewOtherInternal)
126 - (WebView *)_openNewWindowWithRequest:(NSURLRequest *)request;
WebScriptDebugger.mm 98 WebView *webView = [webFrame webView];
99 WebScriptDebugDelegateImplementationCache* implementations = WebViewGetScriptDebugDelegateImplementations(webView);
101 CallScriptDebugDelegate(implementations->didEnterCallFrameFunc, webView, @selector(webView:didEnterCallFrame:sourceId:line:forWebFrame:), m_topCallFrame.get(), static_cast<NSInteger>(0), -1, webFrame);
118 WebView *webView = [webFrame webView];
119 WebScriptDebugDelegateImplementationCache* implementations = WebViewGetScriptDebugDelegateImplementations(webView);
    [all...]
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
TestShellActivity.java 45 import android.webkit.WebView;
98 Log.v(LOGTAG, "message sent to WebView to dump text.");
124 mWebView = new WebView(this);
138 // WebView::setJsFlags is noop in JSC build.
466 // TODO: We should look up the correct WebView for the frame which
468 // WebView for the main frame. EventSender suffers from the same
477 public void onPageFinished(WebView view, String url) {
501 public void onPageStarted(WebView view, String url, Bitmap favicon) {
508 public void onReceivedError(WebView view, int errorCode, String description,
516 public void onReceivedHttpAuthRequest(WebView view, HttpAuthHandler handler
    [all...]
  /frameworks/base/core/java/android/webkit/
WebViewCore.java 67 // The WebView that corresponds to this WebViewCore.
68 private WebView mWebView;
115 * WebView.DEFAULT_SCALE_PERCENT.
131 public WebViewCore(Context context, WebView w, CallbackProxy proxy,
200 // Send a message back to WebView to tell it that we have set up the
204 WebView.WEBCORE_INITIALIZED_MSG_ID,
238 "No WebView has been created in this process!");
249 "No WebView has been created in this process!");
829 // based on whether the WebView has focus and whether the WebView'
    [all...]
JWebCoreJavaBridge.java 45 // keep track of the main WebView attached to the current window so that we
47 private WebView mCurrentMainWebView;
65 synchronized void setActiveWebView(WebView webview) {
67 // it is possible if there is a sub-WebView. Do nothing.
70 mCurrentMainWebView = webview;
73 synchronized void removeActiveWebView(WebView webview) {
74 if (mCurrentMainWebView != webview) {
75 // it is possible if there is a sub-WebView. Do nothing
    [all...]
  /packages/apps/Browser/src/com/android/browser/
Tab.java 67 import android.webkit.WebView;
77 * Class for maintaining Tabs with a main WebView and a subwindow.
89 // Main WebView wrapper
91 // Main WebView
92 private WebView mMainView;
95 // Subwindow WebView
96 private WebView mSubView;
98 // information needed to restore the WebView if the user goes back to the
120 // Keep the original url around to avoid killing the old WebView if the url
149 static final String WEBVIEW = "webview"
    [all...]
  /external/webkit/WebKit/android/nav/
WebView.cpp 65 #define GET_NATIVE_VIEW(env, obj) ((WebView*)env->GetIntField(obj, gWebViewField))
87 // of the multi-threaded WebView.
88 class WebView
97 enum DrawExtras { // keep this in sync with WebView.java
135 WebView(JNIEnv* env, jobject javaWebView, int viewImpl) :
138 jclass clazz = env->FindClass("android/webkit/WebView");
183 ~WebView()
246 // hasFocus keeps track of whether the WebView has focus && windowFocus.
274 // If the WebView is out of focus/window focus, set the state to
588 LOG_ASSERT(m_javaGlue.m_obj, "A java object was not associated with this native WebView!");
1190 WebView* webview = new WebView(env, obj, viewImpl); local
    [all...]
  /cts/tests/tests/webkit/src/android/webkit/cts/
HttpAuthHandlerTest.java 29 import android.webkit.WebView;
37 private WebView mWebView;
154 public void onReceivedHttpAuthRequest(WebView view,
CacheManagerTest.java 28 import android.webkit.WebView;
37 private WebView mWebView;
  /external/webkit/WebKit/haiku/WebCoreSupport/
FrameLoaderClientHaiku.h 38 class WebView;
56 void setWebView(WebView*);
245 WebView* m_webView;
  /packages/apps/Email/tests/src/com/android/email/activity/
MessageViewTests.java 33 import android.webkit.WebView;
57 private WebView mMessageContentView;
86 mMessageContentView = (WebView) a.findViewById(R.id.message_content);
  /external/webkit/WebKit/chromium/src/
WebWorkerBase.h 49 class WebView;
139 WebView* m_webView;
  /external/webkit/WebKit/mac/Plugins/
WebBaseNetscapePluginView.h 42 @class WebView;
101 - (WebView *)webView;
WebNullPluginView.mm 80 WebView *webView = [webFrame webView];
81 WebResourceDelegateImplementationCache* implementations = WebViewGetResourceLoadDelegateImplementations(webView);
83 CallResourceLoadDelegate(implementations->plugInFailedWithErrorFunc, webView,
84 @selector(webView:plugInFailedWithError:dataSource:), localError, [webFrame _dataSource]);

Completed in 655 milliseconds

1 2 3 45 6 7 8 9