/external/webkit/Tools/DumpRenderTree/mac/ |
H A D | AppleScriptController.h | 32 @class WebView; 36 WebView *webView; 38 - (id)initWithWebView:(WebView *)view;
|
H A D | DumpRenderTreeWindow.h | 33 @class WebView; 42 - (WebView *)webView;
|
H A D | TextInputController.h | 31 @class WebView; 37 WebView *webView; 41 - (id)initWithWebView:(WebView *)view;
|
H A D | NavigationController.h | 30 #import <WebKit/WebView.h> 38 - (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame;
|
/external/webkit/Source/WebKit2/UIProcess/API/C/gtk/ |
H A D | WKAPICastGtk.h | 36 class WebView; 38 WK_ADD_API_MAPPING(WKViewRef, WebView)
|
/external/webkit/Source/WebKit2/UIProcess/win/ |
H A D | WebUndoClient.h | 40 void registerEditCommand(WebView*, PassRefPtr<WebEditCommandProxy>, WebPageProxy::UndoOrRedo); 41 void clearAllEditCommands(WebView*); 42 bool canUndoRedo(WebView*, WebPageProxy::UndoOrRedo); 43 void executeUndoRedo(WebView*, WebPageProxy::UndoOrRedo);
|
/external/webkit/Source/WebKit/mac/WebView/ |
H A D | WebEditingDelegatePrivate.h | 34 - (BOOL)webView:(WebView *)webView shouldShowDeleteInterfaceForElement:(DOMHTMLElement *)element; 35 - (void)webView:(WebView *)webView didWriteSelectionToPasteboard:(NSPasteboard *)pasteboard; 36 - (void)webView:(WebView *)webView didSetSelectionTypesForPasteboard:(NSPasteboard *)pasteboard; 37 - (BOOL)webView:(WebView *)webView shouldMoveRangeAfterDelete:(DOMRange *)range replacingRange:(DOMRange *)rangeToBeReplaced;
|
H A D | WebFrameLoadDelegatePrivate.h | 36 - (void)webViewDidDisplayInsecureContent:(WebView *)webView; 38 - (void)webView:(WebView *)webView didRunInsecureContent:(WebSecurityOrigin *)origin; 40 - (void)webView:(WebView *)webView didClearWindowObjectForFrame:(WebFrame *)frame inScriptWorld:(WebScriptWorld *)world; 42 - (void)webView:(WebView *)webView didPushStateWithinPageForFrame:(WebFrame *)frame; 43 - (void)webView:(WebView *)webView didReplaceStateWithinPageForFrame:(WebFrame *)frame; 44 - (void)webView:(WebView *)webView didPopStateWithinPageForFrame:(WebFrame *)frame;
|
H A D | WebHistoryDelegate.h | 30 @class WebView; 34 - (void)webView:(WebView *)webView didNavigateWithNavigationData:(WebNavigationData *)navigationData inFrame:(WebFrame *)webFrame; 36 - (void)webView:(WebView *)webView didPerformClientRedirectFromURL:(NSString *)sourceURL toURL:(NSString *)destinationURL inFrame:(WebFrame *)webFrame; 38 - (void)webView:(WebView *)webView didPerformServerRedirectFromURL:(NSString *)sourceURL toURL:(NSString *)destinationURL inFrame:(WebFrame *)webFrame; 40 - (void)webView:(WebView *)webView updateHistoryTitle:(NSString *)title forURL:(NSString *)url; 42 - (void)populateVisitedLinksForWebView:(WebView *)webView;
|
H A D | WebFrameLoadDelegate.h | 35 @class WebView; 39 @discussion A WebView's WebFrameLoadDelegate tracks the loading progress of its frames. 49 @param webView The WebView sending the message 54 - (void)webView:(WebView *)sender didStartProvisionalLoadForFrame:(WebFrame *)frame; 59 @param webView The WebView sending the message 62 - (void)webView:(WebView *)sender didReceiveServerRedirectForProvisionalLoadForFrame:(WebFrame *)frame; 67 @param webView The WebView sending the message 73 - (void)webView:(WebView *)sender didFailProvisionalLoadWithError:(NSError *)error forFrame:(WebFrame *)frame; 78 @param webView The WebView sending the message 88 - (void)webView:(WebView *)sende [all...] |
H A D | WebUIDelegate.h | 146 @class WebView; 162 @param sender The WebView sending the delegate method. 164 @result The WebView for the new window. 166 - (WebView *)webView:(WebView *)sender createWebViewWithRequest:(NSURLRequest *)request; 170 @param sender The WebView sending the delegate method. 171 @abstract Show the window that contains the top level view of the WebView, 176 - (void)webViewShow:(WebView *)sender; 183 @param sender The WebView sending the delegate method. 185 @result The WebView fo [all...] |
H A D | WebEditingDelegate.h | 33 @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 *)range givenAction:(WebViewInsertAction)action; 45 - (BOOL)webView:(WebView *)webView shouldInsertText:(NSString *)text replacingDOMRange:(DOMRange *)range givenAction:(WebViewInsertAction)action; 46 - (BOOL)webView:(WebView *)webView shouldDeleteDOMRange:(DOMRange *)range; 47 - (BOOL)webView:(WebView *)webView shouldChangeSelectedDOMRange:(DOMRange *)currentRange toDOMRange:(DOMRange *)proposedRange affinity:(NSSelectionAffinity)selectionAffinity stillSelecting:(BOOL)flag; 48 - (BOOL)webView:(WebView *)webView shouldApplyStyle:(DOMCSSStyleDeclaration *)style toElementsInDOMRange:(DOMRange *)range; 49 - (BOOL)webView:(WebView *)webView shouldChangeTypingStyle:(DOMCSSStyleDeclaration *)currentStyle toStyle:(DOMCSSStyleDeclaration *)proposedStyle; 50 - (BOOL)webView:(WebView *)webVie [all...] |
H A D | WebDelegateImplementationCaching.h | 29 // This header contains WebView declarations that can be used anywhere in WebKit, but are neither SPI nor API. 33 @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 object5); 108 BOOL CallFormDelegateReturningBoolean(BOOL, WebView *, SEL, id, SEL, id); 110 id CallUIDelegate(WebView *, SE [all...] |
H A D | WebResourceLoadDelegate.h | 35 @class WebView; 56 @param webView The WebView sending the message. 67 - (id)webView:(WebView *)sender identifierForInitialRequest:(NSURLRequest *)request fromDataSource:(WebDataSource *)dataSource; 73 @param webView The WebView sending the message. 83 - (NSURLRequest *)webView:(WebView *)sender resource:(id)identifier willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)redirectResponse fromDataSource:(WebDataSource *)dataSource; 92 automatically by prompting with a sheet on the window that the WebView is associated with. 94 - (void)webView:(WebView *)sender resource:(id)identifier didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge fromDataSource:(WebDataSource *)dataSource; 101 - (void)webView:(WebView *)sender resource:(id)identifier didCancelAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge fromDataSource:(WebDataSource *)dataSource; 106 @param webView The WebView sending the message. 116 - (void)webView:(WebView *)sende [all...] |
H A D | WebResourceLoadDelegatePrivate.h | 35 @class WebView; 43 - (void)webView:(WebView *)webView didLoadResourceFromMemoryCache:(NSURLRequest *)request response:(NSURLResponse *)response length:(WebNSInteger)length fromDataSource:(WebDataSource *)dataSource; 44 - (BOOL)webView:(WebView *)webView resource:(id)identifier shouldUseCredentialStorageForDataSource:(WebDataSource *)dataSource; 53 - (BOOL)webView:(WebView *)sender resource:(id)identifier canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace forDataSource:(WebDataSource *)dataSource; 62 - (BOOL)webView:(WebView*)sender shouldPaintBrokenImageForURL:(NSURL*)imageURL;
|
/external/webkit/Source/WebKit/mac/WebCoreSupport/ |
H A D | WebGeolocationClient.h | 33 @class WebView; 37 WebGeolocationClient(WebView *); 38 WebView *webView() { return m_webView; } 51 WebView *m_webView;
|
H A D | WebPluginHalterClient.h | 33 @class WebView; 37 WebPluginHalterClient(WebView *); 43 WebView *m_webView;
|
H A D | WebContextMenuClient.h | 31 @class WebView; 35 WebContextMenuClient(WebView *webView); 50 WebView *webView() { return m_webView; } 53 WebView *m_webView;
|
/external/webkit/Source/WebKit/mac/WebInspector/ |
H A D | WebNodeHighlighter.h | 30 @class WebView; 35 WebView *_inspectedWebView; 38 - (id)initWithInspectedWebView:(WebView *)webView;
|
/external/webkit/Source/WebKit/mac/DefaultDelegates/ |
H A D | WebDefaultUIDelegate.m | 35 #import <WebKit/WebView.h> 61 - (WebView *)webView: (WebView *)wv createWebViewWithRequest:(NSURLRequest *)request windowFeatures:(NSDictionary *)features 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 *)w [all...] |
/external/webkit/Source/WebKit/win/WebCoreSupport/ |
H A D | WebPluginHalterClient.h | 36 class WebView; 40 WebPluginHalterClient(WebView* webView); 46 WebView* m_webView;
|
/external/webkit/Source/WebKit2/UIProcess/gtk/ |
H A D | WebView.cpp | 29 #include "WebView.h" 48 void WebView::handleFocusInEvent(GtkWidget* widget) 58 void WebView::handleFocusOutEvent(GtkWidget* widget) 65 static void backspaceCallback(GtkWidget* widget, WebView* client) 71 static void selectAllCallback(GtkWidget* widget, gboolean select, WebView* client) 77 static void cutClipboardCallback(GtkWidget* widget, WebView* client) 83 static void copyClipboardCallback(GtkWidget* widget, WebView* client) 89 static void pasteClipboardCallback(GtkWidget* widget, WebView* client) 125 static void deleteFromCursorCallback(GtkWidget* widget, GtkDeleteType deleteType, gint count, WebView* client) 184 static void moveCursorCallback(GtkWidget* widget, GtkMovementStep step, gint count, gboolean extendSelection, WebView* clien 240 WebView::WebView(WebContext* context, WebPageGroup* pageGroup) function in class:WebKit::WebView [all...] |
/external/chromium/webkit/glue/ |
H A D | webview_unittest.cc | 6 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h" 9 using WebKit::WebView; 15 WebView* view = test_shell_->webView();
|
/external/webkit/Source/WebKit/chromium/public/ |
H A D | WebDevToolsFrontend.h | 40 class WebView; 46 WEBKIT_API static WebDevToolsFrontend* create(WebView* view,
|
/external/webkit/Source/WebKit/mac/Carbon/ |
H A D | HIWebView.h | 47 @class WebView; 78 * Returns the WebKit WebView for a given HIWebView. 93 extern WebView *
|