Title: [167287] trunk/Source/WebKit2
Revision
167287
Author
[email protected]
Date
2014-04-14 17:55:15 -0700 (Mon, 14 Apr 2014)

Log Message

Fix the 32-bit build.

* UIProcess/mac/ViewGestureControllerMac.mm:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (167286 => 167287)


--- trunk/Source/WebKit2/ChangeLog	2014-04-15 00:47:46 UTC (rev 167286)
+++ trunk/Source/WebKit2/ChangeLog	2014-04-15 00:55:15 UTC (rev 167287)
@@ -1,3 +1,9 @@
+2014-04-14  Tim Horton  <[email protected]>
+
+        Fix the 32-bit build.
+
+        * UIProcess/mac/ViewGestureControllerMac.mm:
+
 2014-04-14  Simon Fraser  <[email protected]>
 
         REGRESSION (WebKit2): Programmatic scrolls in overflow-scrolling:touch don't work

Modified: trunk/Source/WebKit2/UIProcess/mac/ViewGestureControllerMac.mm (167286 => 167287)


--- trunk/Source/WebKit2/UIProcess/mac/ViewGestureControllerMac.mm	2014-04-15 00:47:46 UTC (rev 167286)
+++ trunk/Source/WebKit2/UIProcess/mac/ViewGestureControllerMac.mm	2014-04-15 00:55:15 UTC (rev 167287)
@@ -79,12 +79,17 @@
 static const float swipeSnapshotRemovalRenderTreeSizeTargetFraction = 0.5;
 static const std::chrono::seconds swipeSnapshotRemovalWatchdogDuration = 3_s;
 
-@interface WKSwipeCancellationTracker : NSObject
+@interface WKSwipeCancellationTracker : NSObject {
+@private
+    BOOL _isCancelled;
+}
+
 @property (nonatomic) BOOL isCancelled;
+
 @end
 
 @implementation WKSwipeCancellationTracker
-@synthesize isCancelled;
+@synthesize isCancelled=_isCancelled;
 @end
 
 namespace WebKit {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to