Title: [167841] trunk/Source/WebKit2
Revision
167841
Author
[email protected]
Date
2014-04-25 22:53:06 -0700 (Fri, 25 Apr 2014)

Log Message

[Cocoa] Synthesized getter for WKNavigationAction's _userInitiated property has the wrong name
https://bugs.webkit.org/show_bug.cgi?id=132219

Reviewed by Sam Weinig.

* UIProcess/API/Cocoa/WKNavigationActionInternal.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (167840 => 167841)


--- trunk/Source/WebKit2/ChangeLog	2014-04-26 04:41:42 UTC (rev 167840)
+++ trunk/Source/WebKit2/ChangeLog	2014-04-26 05:53:06 UTC (rev 167841)
@@ -1,3 +1,12 @@
+2014-04-25  Dan Bernstein  <[email protected]>
+
+        [Cocoa] Synthesized getter for WKNavigationAction's _userInitiated property has the wrong name
+        https://bugs.webkit.org/show_bug.cgi?id=132219
+
+        Reviewed by Sam Weinig.
+
+        * UIProcess/API/Cocoa/WKNavigationActionInternal.h:
+
 2014-04-25  Simon Fraser  <[email protected]>
 
         [iOS] getAssistedNodeInformation crashes getting the bounding box if it doesn't have a renderer

Modified: trunk/Source/WebKit2/UIProcess/API/Cocoa/WKNavigationActionInternal.h (167840 => 167841)


--- trunk/Source/WebKit2/UIProcess/API/Cocoa/WKNavigationActionInternal.h	2014-04-26 04:41:42 UTC (rev 167840)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/WKNavigationActionInternal.h	2014-04-26 05:53:06 UTC (rev 167841)
@@ -38,7 +38,7 @@
 @property (nonatomic, readwrite, copy) NSURLRequest *request;
 
 @property (nonatomic, readwrite, copy, setter=_setOriginalURL:) NSURL *_originalURL;
-@property (nonatomic, readwrite, setter=_setUserInitiated:) BOOL _userInitiated;
+@property (nonatomic, readwrite, getter=_isUserInitiated, setter=_setUserInitiated:) BOOL _userInitiated;
 
 @end
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to