Home
last modified time | relevance | path

Searched refs:WebView (Results 1 – 25 of 311) sorted by relevance

12345678910>>...13

/external/webkit/Source/WebKit/mac/WebView/
DWebUIDelegate.h146 @class WebView;
166 - (WebView *)webView:(WebView *)sender createWebViewWithRequest:(NSURLRequest *)request;
176 - (void)webViewShow:(WebView *)sender;
187 - (WebView *)webView:(WebView *)sender createWebViewModalDialogWithRequest:(NSURLRequest *)request;
197 - (void)webViewRunModal:(WebView *)sender;
208 - (void)webViewClose:(WebView *)sender;
217 - (void)webViewFocus:(WebView *)sender;
226 - (void)webViewUnfocus:(WebView *)sender;
238 - (NSResponder *)webViewFirstResponder:(WebView *)sender;
251 - (void)webView:(WebView *)sender makeFirstResponder:(NSResponder *)responder;
[all …]
DWebDelegateImplementationCaching.h33 @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…
108 BOOL CallFormDelegateReturningBoolean(BOOL, WebView *, SEL, id, SEL, id);
110 id CallUIDelegate(WebView *, SEL);
111 id CallUIDelegate(WebView *, SEL, id);
[all …]
DWebUIDelegatePrivate.h139 - (void)webView:(WebView *)webView addMessageToConsole:(NSDictionary *)message;
172 - (void)webView:(WebView *)webView addMessageToConsole:(NSDictionary *)message withSource:(NSString…
174 - (NSView *)webView:(WebView *)webView plugInViewWithArguments:(NSDictionary *)arguments;
178 - (void)webView:(WebView *)webView dashboardRegionsChanged:(NSDictionary *)regions;
181 - (void)webView:(WebView *)sender dragImage:(NSImage *)anImage at:(NSPoint)viewLocation offset:(NSS…
182 - (void)webView:(WebView *)sender didDrawRect:(NSRect)rect;
183 - (void)webView:(WebView *)sender didScrollDocumentInFrameView:(WebFrameView *)frameView;
185 - (BOOL)webViewShouldInterruptJavaScript:(WebView *)sender;
186 - (void)webView:(WebView *)sender willPopupMenu:(NSMenu *)menu;
187 - (void)webView:(WebView *)sender contextMenuItemSelected:(NSMenuItem *)item forElement:(NSDictiona…
[all …]
DWebFrameLoadDelegate.h35 @class WebView;
54 - (void)webView:(WebView *)sender didStartProvisionalLoadForFrame:(WebFrame *)frame;
62 - (void)webView:(WebView *)sender didReceiveServerRedirectForProvisionalLoadForFrame:(WebFrame *)fr…
73 - (void)webView:(WebView *)sender didFailProvisionalLoadWithError:(NSError *)error forFrame:(WebFra…
88 - (void)webView:(WebView *)sender didCommitLoadForFrame:(WebFrame *)frame;
98 - (void)webView:(WebView *)sender didReceiveTitle:(NSString *)title forFrame:(WebFrame *)frame;
107 - (void)webView:(WebView *)sender didReceiveIcon:(NSImage *)image forFrame:(WebFrame *)frame;
118 - (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame;
128 - (void)webView:(WebView *)sender didFailLoadWithError:(NSError *)error forFrame:(WebFrame *)frame;
137 - (void)webView:(WebView *)sender didChangeLocationWithinPageForFrame:(WebFrame *)frame;
[all …]
DWebEditingDelegate.h33 @class WebView;
42 - (BOOL)webView:(WebView *)webView shouldBeginEditingInDOMRange:(DOMRange *)range;
43 - (BOOL)webView:(WebView *)webView shouldEndEditingInDOMRange:(DOMRange *)range;
44 - (BOOL)webView:(WebView *)webView shouldInsertNode:(DOMNode *)node replacingDOMRange:(DOMRange *)r…
45 - (BOOL)webView:(WebView *)webView shouldInsertText:(NSString *)text replacingDOMRange:(DOMRange *)…
46 - (BOOL)webView:(WebView *)webView shouldDeleteDOMRange:(DOMRange *)range;
47 - (BOOL)webView:(WebView *)webView shouldChangeSelectedDOMRange:(DOMRange *)currentRange toDOMRange…
48 - (BOOL)webView:(WebView *)webView shouldApplyStyle:(DOMCSSStyleDeclaration *)style toElementsInDOM…
49 - (BOOL)webView:(WebView *)webView shouldChangeTypingStyle:(DOMCSSStyleDeclaration *)currentStyle t…
50 - (BOOL)webView:(WebView *)webView doCommandBySelector:(SEL)selector;
[all …]
DWebDelegateImplementationCaching.mm33 #import "WebView.h"
37 @implementation WebView (WebDelegateImplementationCaching) implementation in WebDelegateImplementationCaching
39 WebResourceDelegateImplementationCache* WebViewGetResourceLoadDelegateImplementations(WebView *webV… category
47 WebFrameLoadDelegateImplementationCache* WebViewGetFrameLoadDelegateImplementations(WebView *webVie… category
55 WebScriptDebugDelegateImplementationCache* WebViewGetScriptDebugDelegateImplementations(WebView *we… category
63 WebHistoryDelegateImplementationCache* WebViewGetHistoryDelegateImplementations(WebView *webView) category
72 // declared inside a WebView category to get direct access to the delegate data memebers,
82 static inline id CallDelegate(WebView *self, id delegate, SEL selector) category
96 static inline id CallDelegate(WebView *self, id delegate, SEL selector, id object) category
110 static inline id CallDelegate(WebView *self, id delegate, SEL selector, NSRect rect) category
[all …]
DWebResourceLoadDelegate.h35 @class WebView;
67 - (id)webView:(WebView *)sender identifierForInitialRequest:(NSURLRequest *)request fromDataSource:…
83 - (NSURLRequest *)webView:(WebView *)sender resource:(id)identifier willSendRequest:(NSURLRequest *…
94 - (void)webView:(WebView *)sender resource:(id)identifier didReceiveAuthenticationChallenge:(NSURLA…
101 - (void)webView:(WebView *)sender resource:(id)identifier didCancelAuthenticationChallenge:(NSURLAu…
116 - (void)webView:(WebView *)sender resource:(id)identifier didReceiveResponse:(NSURLResponse *)respo…
127 - (void)webView:(WebView *)sender resource:(id)identifier didReceiveContentLength:(WebNSInteger)len…
137 - (void)webView:(WebView *)sender resource:(id)identifier didFinishLoadingFromDataSource:(WebDataSo…
148 - (void)webView:(WebView *)sender resource:(id)identifier didFailLoadingWithError:(NSError *)error …
162 - (void)webView:(WebView *)sender plugInFailedWithError:(NSError *)error dataSource:(WebDataSource …
DWebFrameLoadDelegatePrivate.h36 - (void)webViewDidDisplayInsecureContent:(WebView *)webView;
38 - (void)webView:(WebView *)webView didRunInsecureContent:(WebSecurityOrigin *)origin;
40 - (void)webView:(WebView *)webView didClearWindowObjectForFrame:(WebFrame *)frame inScriptWorld:(We…
42 - (void)webView:(WebView *)webView didPushStateWithinPageForFrame:(WebFrame *)frame;
43 - (void)webView:(WebView *)webView didReplaceStateWithinPageForFrame:(WebFrame *)frame;
44 - (void)webView:(WebView *)webView didPopStateWithinPageForFrame:(WebFrame *)frame;
DWebScriptDebugDelegate.h43 @class WebView;
63 - (void)webView:(WebView *)webView didParseSource:(NSString *)source
69 - (void)webView:(WebView *)webView didParseSource:(NSString *)source
76 - (void)webView:(WebView *)webView failedToParseSource:(NSString *)source
83 - (void)webView:(WebView *)webView didEnterCallFrame:(WebScriptCallFrame *)frame
89 - (void)webView:(WebView *)webView willExecuteStatement:(WebScriptCallFrame *)frame
95 - (void)webView:(WebView *)webView willLeaveCallFrame:(WebScriptCallFrame *)frame
101 - (void)webView:(WebView *)webView exceptionWasRaised:(WebScriptCallFrame *)frame
108 - (void)webView:(WebView *)webView exceptionWasRaised:(WebScriptCallFrame *)frame
DWebHistoryDelegate.h30 @class WebView;
34 - (void)webView:(WebView *)webView didNavigateWithNavigationData:(WebNavigationData *)navigationDat…
36 - (void)webView:(WebView *)webView didPerformClientRedirectFromURL:(NSString *)sourceURL toURL:(NSS…
38 - (void)webView:(WebView *)webView didPerformServerRedirectFromURL:(NSString *)sourceURL toURL:(NSS…
40 - (void)webView:(WebView *)webView updateHistoryTitle:(NSString *)title forURL:(NSString *)url;
42 - (void)populateVisitedLinksForWebView:(WebView *)webView;
/external/webkit/Source/WebKit2/UIProcess/gtk/
DWebView.cpp48 void WebView::handleFocusInEvent(GtkWidget* widget) in handleFocusInEvent()
58 void WebView::handleFocusOutEvent(GtkWidget* widget) in handleFocusOutEvent()
65 static void backspaceCallback(GtkWidget* widget, WebView* client) in backspaceCallback()
71 static void selectAllCallback(GtkWidget* widget, gboolean select, WebView* client) in selectAllCallback()
77 static void cutClipboardCallback(GtkWidget* widget, WebView* client) in cutClipboardCallback()
83 static void copyClipboardCallback(GtkWidget* widget, WebView* client) in copyClipboardCallback()
89 static void pasteClipboardCallback(GtkWidget* widget, WebView* client) in pasteClipboardCallback()
125 … deleteFromCursorCallback(GtkWidget* widget, GtkDeleteType deleteType, gint count, WebView* client) in deleteFromCursorCallback()
184 …ack(GtkWidget* widget, GtkMovementStep step, gint count, gboolean extendSelection, WebView* client) in moveCursorCallback()
240 WebView::WebView(WebContext* context, WebPageGroup* pageGroup) in WebView() function in WebKit::WebView
[all …]
/external/webkit/Source/WebKit/mac/
DWebKit.order26 +[WebView initialize]
28 +[WebView(WebPrivate) _registerViewClass:representationClass:forURLScheme:]
29 +[WebView(WebPrivate) _generatedMIMETypeForURLScheme:]
30 +[WebView registerViewClass:representationClass:forMIMEType:]
50 +[WebView(WebPrivate) _registerURLSchemeAsSecure:]
51 +[WebView(WebPrivate) _setDomainRelaxationForbidden:forURLScheme:]
52 +[WebView registerURLSchemeAsLocal:]
69 -[WebView(WebPrivate) _initWithFrame:frameName:groupName:usesDocumentViews:]
73 -[WebView(WebPrivate) _commonInitializationWithFrameName:groupName:usesDocumentViews:]
108 -[WebView preferences]
[all …]
DChangeLog-2002-12-0313 * WebView.subproj/WebFramePrivate.h: Nuke shortRedirectComing, rename
15 * WebView.subproj/WebFramePrivate.m:
34 * WebView.subproj/WebPreferences.m:
45 * WebView.subproj/WebHTMLView.m:
52 * WebView.subproj/WebHTMLViewPrivate.h: URL, not element dictionary.
53 * WebView.subproj/WebHTMLViewPrivate.m: (-[WebHTMLViewPrivate dealloc]): Release the
66 * WebView.subproj/WebPreferences.m:
70 * WebView.subproj/WebPreferencesPrivate.h:
136 * WebView.subproj/WebHTMLView.m:
139 (-[WebHTMLView draggedImage:endedAt:operation:]): call -[WebView _reregisterDraggedTypes]
[all …]
DChangeLog-2006-02-0938 * WebView/WebDefaultContextMenuDelegate.h: Removed.
39 * WebView/WebDefaultContextMenuDelegate.m: Removed.
40 * WebView/WebDefaultEditingDelegate.h: Removed.
41 * WebView/WebDefaultEditingDelegate.m: Removed.
42 * WebView/WebDefaultFrameLoadDelegate.h: Removed.
43 * WebView/WebDefaultFrameLoadDelegate.m: Removed.
44 * WebView/WebDefaultPolicyDelegate.h: Removed.
45 * WebView/WebDefaultPolicyDelegate.m: Removed.
46 * WebView/WebDefaultResourceLoadDelegate.h: Removed.
47 * WebView/WebDefaultResourceLoadDelegate.m: Removed.
[all …]
DChangeLog-2010-01-2920 * WebView/WebView.mm:
23 (-[WebView _preferencesChangedNotification:]): Call setLoadDeferringEnabled().
37 * WebView/WebHTMLView.mm:
48 * WebView/WebDataSource.mm:
50 * WebView/WebFrame.mm:
52 * WebView/WebView.mm:
54 (-[WebView _close]):
55 * WebView/WebViewData.mm:
63 A WebGeolocationControllerClient is leaked for every WebView
86 * WebView/WebFrame.mm:
[all …]
DChangeLog-2007-10-1491 * WebView/WebDynamicScrollBarsView.m:
111 * WebView/WebHTMLView.mm: (-[WebHTMLView becomeFirstResponder]): Pass in the FocusDirection.
115 * WebView/WebHTMLView.mm: (-[WebHTMLView _updateActiveState]):
126 * WebView/WebView.mm:
127 (+[WebView _minimumRequiredSafariBuildNumber]):
128 * WebView/WebViewPrivate.h:
136 * WebView/WebView.mm: Removed -[WebView _minimumRequiredSafariBuildNumber] because newer
140 * WebView/WebViewPrivate.h: Ditto.
150 bug here in WebView: setHostWindow:nil needs to be called before setting _private->closed to
152 the window and the WebView.
[all …]
DChangeLog8 * WebView/WebPreferences.mm:
39 * WebView/WebView.mm:
50 * WebView/WebView.mm:
63 WebCore, the WebView class in WebKit1, and the WebContext class
68 * WebView/WebView.mm:
69 (+[WebView(WebPrivate) _HTTPPipeliningEnabled]): Added.
70 (+[WebView(WebPrivate) _setHTTPPipeliningEnabled:]): Added.
71 * WebView/WebViewPrivate.h:
72 (+[WebView(WebPrivate) _HTTPPipeliningEnabled]): Added declaration.
73 (+[WebView(WebPrivate) _setHTTPPipeliningEnabled:]): Added declaration.
[all …]
/external/webkit/Source/WebKit/win/
DWebView.cpp186 static HashSet<WebView*> pendingDeleteBackingStoreSet;
190 WebView* kit(Page* page) in kit()
262 if (!WebView::didSetCacheModel() || cacheModel > WebView::cacheModel()) in notifyPreferencesChanged()
263 WebView::setCacheModel(cacheModel); in notifyPreferencesChanged()
264 else if (cacheModel < WebView::cacheModel()) { in notifyPreferencesChanged()
269WebView::setCacheModel(max(sharedPreferencesCacheModel, WebView::maxCacheModelInAnyInstance())); in notifyPreferencesChanged()
279 if (cacheModel == WebView::cacheModel()) { in notifyPreferencesRemoved()
284WebView::setCacheModel(max(sharedPreferencesCacheModel, WebView::maxCacheModelInAnyInstance())); in notifyPreferencesRemoved()
321 bool WebView::s_allowSiteSpecificHacks = false;
323 WebView::WebView() in WebView() function in WebView
[all …]
DChangeLog-2009-06-1620 * WebView.cpp:
21 (WebView::registerURLSchemeAsLocal):
55 (WebFrame::startDownload): Call through to WebView::downloadURL.
59 Move WebContextMenuClient's downloading code to WebView
68 * WebView.cpp:
69 (WebView::downloadURL): ...to here. Also tightened up the code a
72 * WebView.h: Added downloadURL.
188 * WebView.cpp:
269 * WebView.cpp:
270 (WebView::initWithFrame):
[all …]
/external/webkit/Source/WebKit/mac/DefaultDelegates/
DWebDefaultUIDelegate.m35 #import <WebKit/WebView.h>
61 - (WebView *)webView: (WebView *)wv createWebViewWithRequest:(NSURLRequest *)request windowFeatures…
70 - (void)webViewShow: (WebView *)wv
74 - (void)webViewClose: (WebView *)wv
79 - (void)webViewFocus: (WebView *)wv
84 - (void)webViewUnfocus: (WebView *)wv
91 - (NSResponder *)webViewFirstResponder: (WebView *)wv
96 - (void)webView: (WebView *)wv makeFirstResponder:(NSResponder *)responder
101 - (void)webView: (WebView *)wv setStatusText:(NSString *)text
105 - (NSString *)webViewStatusText: (WebView *)wv
[all …]
DWebDefaultEditingDelegate.m36 #import <WebKit/WebView.h>
50 - (BOOL)webView:(WebView *)webView shouldShowDeleteInterfaceForElement:(DOMHTMLElement *)element
55 - (BOOL)webView:(WebView *)webView shouldBeginEditingInDOMRange:(DOMRange *)range
60 - (BOOL)webView:(WebView *)webView shouldEndEditingInDOMRange:(DOMRange *)range
65 - (BOOL)webView:(WebView *)webView shouldInsertNode:(DOMNode *)node replacingDOMRange:(DOMRange *)r…
70 - (BOOL)webView:(WebView *)webView shouldInsertText:(NSString *)text replacingDOMRange:(DOMRange *)…
75 - (BOOL)webView:(WebView *)webView shouldDeleteDOMRange:(DOMRange *)range
80 - (BOOL)webView:(WebView *)webView shouldChangeSelectedDOMRange:(DOMRange *)currentRange toDOMRange…
85 - (BOOL)webView:(WebView *)webView shouldApplyStyle:(DOMCSSStyleDeclaration *)style toElementsInDOM…
90 - (BOOL)webView:(WebView *)webView shouldMoveRangeAfterDelete:(DOMRange *)range replacingRange:(DOM…
[all …]
/external/webkit/Source/WebKit2/UIProcess/win/
DWebView.cpp106 LRESULT CALLBACK WebView::WebViewWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in WebViewWndProc()
110 if (WebView* webView = reinterpret_cast<WebView*>(longPtr)) in WebViewWndProc()
124 LRESULT WebView::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in wndProc()
237 bool WebView::registerWebViewWindowClass() in registerWebViewWindowClass()
248 wcex.lpfnWndProc = WebView::WebViewWndProc; in registerWebViewWindowClass()
250 wcex.cbWndExtra = sizeof(WebView*); in registerWebViewWindowClass()
262 WebView::WebView(RECT rect, WebContext* context, WebPageGroup* pageGroup, HWND parentWindow) in WebView() function in WebKit::WebView
304 WebView::~WebView() in ~WebView()
311 void WebView::initialize() in initialize()
325 void WebView::initializeUndoClient(const WKViewUndoClient* client) in initializeUndoClient()
[all …]
/external/webkit/Source/WebKit/wince/
DWebView.cpp59 LRESULT CALLBACK WebView::webViewWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in webViewWndProc()
61 if (WebView* webView = reinterpret_cast<WebView*>(GetWindowLong(hWnd, 0))) in webViewWndProc()
74 WebView::WebView(HWND hwnd, unsigned features) in WebView() function in WebView
121 WebView::~WebView() in ~WebView()
127 void WebView::initialize(HINSTANCE instanceHandle) in initialize()
137 wc.lpfnWndProc = WebView::webViewWndProc; in initialize()
150 void WebView::cleanup() in cleanup()
155 PassRefPtr<Frame> WebView::createFrame(const KURL& url, const String& name, HTMLFrameOwnerElement* … in createFrame()
181 void WebView::runJavaScriptAlert(const String& message) in runJavaScriptAlert()
186 bool WebView::runJavaScriptConfirm(const String& message) in runJavaScriptConfirm()
[all …]
/external/webkit/Source/WebKit/win/Interfaces/
DIWebUIDelegate.idl195 @param sender The WebView sending the delegate method.
197 @result The WebView for the new window.
198 - (WebView *)webView:(WebView *)sender createWebViewWithRequest:(NSURLRequest *)request;
204 @param sender The WebView sending the delegate method.
205 @abstract Show the window that contains the top level view of the WebView,
209 - (void)webViewShow:(WebView *)sender;
216 @param sender The WebView sending the delegate method.
219 WebView. Other clients may choose to ignore this method
221 - (void)webViewClose:(WebView *)sender;
228 @param The WebView sending the delegate method.
[all …]
/external/webkit/Tools/DumpRenderTree/mac/
DUIDelegate.mm42 #import <WebKit/WebView.h>
50 - (void)webView:(WebView *)sender setFrame:(NSRect)frame
55 - (NSRect)webViewFrame:(WebView *)sender
60 - (void)webView:(WebView *)sender addMessageToConsole:(NSDictionary *)dictionary withSource:(NSStri…
78 - (void)webViewRunModal:(WebView *)sender
86 - (void)webView:(WebView *)sender runJavaScriptAlertPanelWithMessage:(NSString *)message initiatedB…
92 - (BOOL)webView:(WebView *)sender runJavaScriptConfirmPanelWithMessage:(NSString *)message initiate…
99 - (NSString *)webView:(WebView *)sender runJavaScriptTextInputPanelWithPrompt:(NSString *)prompt de…
106 - (BOOL)webView:(WebView *)c runBeforeUnloadConfirmPanelWithMessage:(NSString *)message initiatedBy…
114 - (void)webView:(WebView *)sender dragImage:(NSImage *)anImage at:(NSPoint)viewLocation offset:(NSS…
[all …]

12345678910>>...13