Title: [173662] trunk/Source/WebKit2
Revision
173662
Author
[email protected]
Date
2014-09-16 11:00:22 -0700 (Tue, 16 Sep 2014)

Log Message

Standardized the return type of a delegate method.

Rubber-stamped by Anders Carlsson.

* UIProcess/API/Cocoa/WKUIDelegatePrivate.h: Changed a return type from bool to BOOL.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (173661 => 173662)


--- trunk/Source/WebKit2/ChangeLog	2014-09-16 17:27:02 UTC (rev 173661)
+++ trunk/Source/WebKit2/ChangeLog	2014-09-16 18:00:22 UTC (rev 173662)
@@ -1,3 +1,11 @@
+2014-09-16  Dan Bernstein  <[email protected]>
+
+        Standardized the return type of a delegate method.
+
+        Rubber-stamped by Anders Carlsson.
+
+        * UIProcess/API/Cocoa/WKUIDelegatePrivate.h: Changed a return type from bool to BOOL.
+
 2014-09-16  Tomas Popela  <[email protected]>
 
         [GTK] Typo in  webkit_security_manager_register_uri_scheme_as_empty_document documentation

Modified: trunk/Source/WebKit2/UIProcess/API/Cocoa/WKUIDelegatePrivate.h (173661 => 173662)


--- trunk/Source/WebKit2/UIProcess/API/Cocoa/WKUIDelegatePrivate.h	2014-09-16 17:27:02 UTC (rev 173661)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/WKUIDelegatePrivate.h	2014-09-16 18:00:22 UTC (rev 173662)
@@ -48,7 +48,7 @@
 - (NSArray *)_webView:(WKWebView *)webView actionsForElement:(_WKActivatedElementInfo *)element defaultActions:(NSArray *)defaultActions;
 - (void)_webView:(WKWebView *)webView didNotHandleTapAsClickAtPoint:(CGPoint)point;
 - (void)_webView:(WKWebView *)webView usesMinimalUI:(BOOL)wantMinimalUI;
-- (bool)_webView:(WKWebView *)webView shouldRequestGeolocationAuthorizationForURL:(NSURL *)url isMainFrame:(BOOL)isMainFrame mainFrameURL:(NSURL *)mainFrameURL;
+- (BOOL)_webView:(WKWebView *)webView shouldRequestGeolocationAuthorizationForURL:(NSURL *)url isMainFrame:(BOOL)isMainFrame mainFrameURL:(NSURL *)mainFrameURL;
 #endif
 
 @end
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to