Searched refs:_webView (Results 1 - 25 of 38) sorted by relevance

12

/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/Cocoa/
H A DWKUIDelegatePrivate.h40 - (void)_webView:(WKWebView *)webView decideDatabaseQuotaForSecurityOrigin:(_WKSecurityOrigin *)securityOrigin currentQuota:(unsigned long long)currentQuota currentOriginUsage:(unsigned long long)currentOriginUsage currentDatabaseUsage:(unsigned long long)currentUsage expectedUsage:(unsigned long long)expectedUsage decisionHandler:(void (^)(unsigned long long newQuota))decisionHandler;
43 - (void)_webView:(WKWebView *)webView decideWebApplicationCacheQuotaForSecurityOrigin:(_WKSecurityOrigin *)securityOrigin currentQuota:(unsigned long long)currentQuota totalBytesNeeded:(unsigned long long)totalBytesNeeded decisionHandler:(void (^)(unsigned long long newQuota))decisionHandler;
45 - (void)_webView:(WKWebView *)webView printFrame:(_WKFrameHandle *)frame;
48 - (NSArray *)_webView:(WKWebView *)webView actionsForElement:(_WKActivatedElementInfo *)element defaultActions:(NSArray *)defaultActions;
49 - (void)_webView:(WKWebView *)webView didNotHandleTapAsClickAtPoint:(CGPoint)point;
50 - (void)_webView:(WKWebView *)webView usesMinimalUI:(BOOL)wantMinimalUI;
H A DWKNavigationDelegatePrivate.h48 - (void)_webView:(WKWebView *)webView navigation:(WKNavigation *)navigation didFailProvisionalLoadInSubframe:(WKFrameInfo *)subframe withError:(NSError *)error;
50 - (void)_webView:(WKWebView *)webView navigationDidFinishDocumentLoad:(WKNavigation *)navigation;
51 - (void)_webView:(WKWebView *)webView navigation:(WKNavigation *)navigation didSameDocumentNavigation:(_WKSameDocumentNavigationType)navigationType;
53 - (void)_webView:(WKWebView *)webView renderingProgressDidChange:(_WKRenderingProgressEvents)progressEvents;
55 - (BOOL)_webView:(WKWebView *)webView canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace;
56 - (void)_webView:(WKWebView *)webView didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge;
67 - (void)_webView:(WKWebView *)webView willSnapshotBackForwardListItem:(WKBackForwardListItem *)item;
70 - (void)_webView:(WKWebView *)webView didStartLoadForQuickLookDocumentInMainFrameWithFileName:(NSString *)fileName uti:(NSString *)uti;
71 - (void)_webView:(WKWebView *)webView didFinishLoadForQuickLookDocumentInMainFrame:(NSData *)documentData;
H A DWKHistoryDelegatePrivate.h39 - (void)_webView:(WKWebView *)webView didNavigateWithNavigationData:(WKNavigationData *)navigationData;
40 - (void)_webView:(WKWebView *)webView didPerformClientRedirectFromURL:(NSURL *)sourceURL toURL:(NSURL *)destinationURL;
41 - (void)_webView:(WKWebView *)webView didPerformServerRedirectFromURL:(NSURL *)sourceURL toURL:(NSURL *)destinationURL;
42 - (void)_webView:(WKWebView *)webView didUpdateHistoryTitle:(NSString *)title forURL:(NSURL *)URL;
H A D_WKFormDelegate.h39 - (void)_webView:(WKWebView *)webView didStartInputSession:(id <_WKFormInputSession>)inputSession;
40 - (void)_webView:(WKWebView *)webView willSubmitFormValues:(NSDictionary *)values userObject:(NSObject <NSSecureCoding> *)userObject submissionHandler:(void (^)(void))submissionHandler;
43 - (void)_webView:(WKWebView *)webView accessoryViewCustomButtonTappedInFormInputSession:(id <_WKFormInputSession>)inputSession;
44 - (BOOL)_webView:(WKWebView *)webView hasSuggestionsForCurrentStringInInputSession:(id <_WKFormInputSession>)inputSession;
45 - (NSArray *)_webView:(WKWebView *)webView suggestionsForString:(NSString *)string inInputSession:(id <_WKFormInputSession>)inputSession;
H A D_WKFindDelegate.h36 - (void)_webView:(WKWebView *)webView didCountMatches:(NSUInteger)matches forString:(NSString *)string;
37 - (void)_webView:(WKWebView *)webView didFindMatches:(NSUInteger)matches forString:(NSString *)string withMatchIndex:(NSInteger)matchIndex;
38 - (void)_webView:(WKWebView *)webView didFailToFindString:(NSString *)string;
H A DWKScriptMessage.mm37 WebKit::WeakObjCPtr<WKWebView> _webView;
48 _webView = webView;
63 return _webView.getAutoreleased();
/macosx-10.10/WebKit-7600.1.25/ios/WebView/
H A DWebFrameViewWAKCompatibility.m35 if (![[self _webView] _useFixedLayout])
/macosx-10.10/WebKit2-7600.1.25/UIProcess/Cocoa/
H A DFindClient.mm49 m_delegateMethods.webviewDidCountStringMatches = [delegate respondsToSelector:@selector(_webView:didCountMatches:forString:)];
50 m_delegateMethods.webviewDidFindString = [delegate respondsToSelector:@selector(_webView:didFindMatches:forString:withMatchIndex:)];
51 m_delegateMethods.webviewDidFailToFindString = [delegate respondsToSelector:@selector(_webView:didFailToFindString:)];
57 [m_delegate.get() _webView:m_webView didCountMatches:matchCount forString:string];
63 [m_delegate.get() _webView:m_webView didFindMatches:matchCount forString:string withMatchIndex:matchIndex];
69 [m_delegate.get() _webView:m_webView didFailToFindString:string];
H A DWKReloadFrameErrorRecoveryAttempter.mm44 WebKit::WeakObjCPtr<WKWebView> _webView;
54 _webView = webView;
63 auto webView = _webView.get();
H A DNavigationState.mm131 m_navigationDelegateMethods.webViewNavigationDidFailProvisionalLoadInSubframeWithError = [delegate respondsToSelector:@selector(_webView:navigation:didFailProvisionalLoadInSubframe:withError:)];
132 m_navigationDelegateMethods.webViewNavigationDidFinishDocumentLoad = [delegate respondsToSelector:@selector(_webView:navigationDidFinishDocumentLoad:)];
133 m_navigationDelegateMethods.webViewNavigationDidSameDocumentNavigation = [delegate respondsToSelector:@selector(_webView:navigation:didSameDocumentNavigation:)];
134 m_navigationDelegateMethods.webViewRenderingProgressDidChange = [delegate respondsToSelector:@selector(_webView:renderingProgressDidChange:)];
136 m_navigationDelegateMethods.webViewCanAuthenticateAgainstProtectionSpace = [delegate respondsToSelector:@selector(_webView:canAuthenticateAgainstProtectionSpace:)];
137 m_navigationDelegateMethods.webViewDidReceiveAuthenticationChallenge = [delegate respondsToSelector:@selector(_webView:didReceiveAuthenticationChallenge:)];
143 m_navigationDelegateMethods.webViewWillSnapshotBackForwardListItem = [delegate respondsToSelector:@selector(_webView:willSnapshotBackForwardListItem:)];
145 m_navigationDelegateMethods.webViewDidStartLoadForQuickLookDocumentInMainFrame = [delegate respondsToSelector:@selector(_webView:didStartLoadForQuickLookDocumentInMainFrameWithFileName:uti:)];
146 m_navigationDelegateMethods.webViewDidFinishLoadForQuickLookDocumentInMainFrame = [delegate respondsToSelector:@selector(_webView:didFinishLoadForQuickLookDocumentInMainFrame:)];
159 m_historyDelegateMethods.webViewDidNavigateWithNavigationData = [historyDelegate respondsToSelector:@selector(_webView
[all...]
H A DUIDelegate.mm71 m_delegateMethods.webViewDecideDatabaseQuotaForSecurityOriginCurrentQuotaCurrentOriginUsageCurrentDatabaseUsageExpectedUsageDecisionHandler = [delegate respondsToSelector:@selector(_webView:decideDatabaseQuotaForSecurityOrigin:currentQuota:currentOriginUsage:currentDatabaseUsage:expectedUsage:decisionHandler:)];
72 m_delegateMethods.webViewDecideWebApplicationCacheQuotaForSecurityOriginCurrentQuotaTotalBytesNeeded = [delegate respondsToSelector:@selector(_webView:decideWebApplicationCacheQuotaForSecurityOrigin:currentQuota:totalBytesNeeded:decisionHandler:)];
73 m_delegateMethods.webViewPrintFrame = [delegate respondsToSelector:@selector(_webView:printFrame:)];
75 m_delegateMethods.webViewActionsForElementDefaultActions = [delegate respondsToSelector:@selector(_webView:actionsForElement:defaultActions:)];
76 m_delegateMethods.webViewDidNotHandleTapAsClickAtPoint = [delegate respondsToSelector:@selector(_webView:didNotHandleTapAsClickAtPoint:)];
190 RefPtr<CompletionHandlerCallChecker> checker = CompletionHandlerCallChecker::create(delegate.get(), @selector(_webView:decideDatabaseQuotaForSecurityOrigin:currentQuota:currentOriginUsage:currentDatabaseUsage:expectedUsage:decisionHandler:));
191 [(id <WKUIDelegatePrivate>)delegate _webView:m_uiDelegate.m_webView decideDatabaseQuotaForSecurityOrigin:adoptNS([[_WKSecurityOrigin alloc] _initWithSecurityOrigin:securityOrigin->securityOrigin()]).get() currentQuota:currentQuota currentOriginUsage:currentOriginUsage currentDatabaseUsage:currentUsage expectedUsage:expectedUsage decisionHandler:[completionHandler, checker](unsigned long long newQuota) {
210 RefPtr<CompletionHandlerCallChecker> checker = CompletionHandlerCallChecker::create(delegate.get(), @selector(_webView:decideWebApplicationCacheQuotaForSecurityOrigin:currentQuota:totalBytesNeeded:decisionHandler:));
211 [(id <WKUIDelegatePrivate>)delegate _webView:m_uiDelegate.m_webView decideWebApplicationCacheQuotaForSecurityOrigin:adoptNS([[_WKSecurityOrigin alloc] _initWithSecurityOrigin:securityOrigin]).get() currentQuota:currentQuota totalBytesNeeded:totalBytesNeeded decisionHandler:[completionHandler, checker](unsigned long long newQuota) {
228 [(id <WKUIDelegatePrivate>)delegate _webView
[all...]
/macosx-10.10/WebKit-7600.1.25/mac/WebView/
H A DWebIndicateLayer.h34 WebView *_webView; variable
H A DWebIndicateLayer.mm46 _webView = webView;
49 self.contentsScale = [[_webView window] screenScale];
60 CGFloat documentScale = [[[_webView mainFrame] documentView] scale];
62 [self setFrame:[_webView frame]];
H A DWebClipView.mm48 - (WebView *)_webView;
153 if ([docView respondsToSelector:@selector(_webView)]) {
155 WebView *wv = [docView _webView];
H A DWebFrameViewInternal.h36 - (WebView *)_webView;
H A DWebFullScreenController.mm123 return _webView;
129 [_webView release];
130 _webView = webView;
207 NSRect webViewFrame = convertRectToScreen([_webView window], [_webView convertRect:[_webView frame] toView:nil]);
212 CGWindowID windowID = [[_webView window] windowNumber];
219 NSResponder *webWindowFirstResponder = [[_webView window] firstResponder];
231 _scrollPosition = [_webView _mainCoreFrame]->view()->scrollPosition();
232 [self _swapView:_webView wit
[all...]
H A DWebDataSourceInternal.h47 - (WebView *)_webView;
H A DWebFullScreenController.h46 WebView *_webView; member in namespace:NSWindowController
/macosx-10.10/WebKit2-7600.1.25/UIProcess/mac/
H A DWKFullScreenWindowController.mm100 _webView = webView;
209 NSRect webViewFrame = convertRectToScreen([_webView window], [_webView convertRect:[_webView frame] toView:nil]);
214 CGWindowID windowID = [[_webView window] windowNumber];
226 NSResponder *webWindowFirstResponder = [[_webView window] firstResponder];
234 [_webView _setSuppressVisibilityUpdates:YES];
238 _webViewPlaceholder = adoptNS([[WebCoreFullScreenPlaceholderView alloc] initWithFrame:[_webView frame]]);
243 [self _replaceView:_webView with:_webViewPlaceholder.get()];
247 [contentView addSubview:_webView positione
[all...]
/macosx-10.10/WebKit-7600.1.25/mac/WebInspector/
H A DWebInspector.mm50 _webView = webView; // not retained to prevent a cycle
63 _webView = nil;
68 if (Page* page = core(_webView))
155 if (Page* page = core(_webView))
171 if (Page* page = core(_webView))
H A DWebInspector.h39 WebView *_webView; variable
H A DWebNodeHighlight.h47 WebView *_webView; member in namespace:CALayer
/macosx-10.10/WebKit-7600.1.25/mac/Misc/
H A DWebNSViewExtras.h50 - (WebView *)_webView;
92 - (WebView *)_webView;
/macosx-10.10/WebKit-7600.1.25/mac/WebCoreSupport/
H A DWebInspectorClient.mm107 WebView *_webView;
411 _webView = [[WebView alloc] init];
412 [_webView setPreferences:preferences];
413 [_webView setProhibitsMainFrameScrolling:YES];
414 [_webView setUIDelegate:self];
415 [_webView setPolicyDelegate:self];
418 [_webView setDrawsBackground:NO];
436 [[_webView mainFrame] loadRequest:request];
444 [_webView release];
478 return _webView;
[all...]
H A DWebGeolocationClient.mm59 RetainPtr<WebView *> _webView;
171 _webView = webView;
204 return [[_webView.get() preferences] _alwaysRequestGeolocationPermission];

Completed in 369 milliseconds

12