Changeset 167287 in webkit
- Timestamp:
- Apr 14, 2014, 5:55:15 PM (11 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r167286 r167287 1 2014-04-14 Tim Horton <timothy_horton@apple.com> 2 3 Fix the 32-bit build. 4 5 * UIProcess/mac/ViewGestureControllerMac.mm: 6 1 7 2014-04-14 Simon Fraser <simon.fraser@apple.com> 2 8 -
trunk/Source/WebKit2/UIProcess/mac/ViewGestureControllerMac.mm
r167285 r167287 80 80 static const std::chrono::seconds swipeSnapshotRemovalWatchdogDuration = 3_s; 81 81 82 @interface WKSwipeCancellationTracker : NSObject 82 @interface WKSwipeCancellationTracker : NSObject { 83 @private 84 BOOL _isCancelled; 85 } 86 83 87 @property (nonatomic) BOOL isCancelled; 88 84 89 @end 85 90 86 91 @implementation WKSwipeCancellationTracker 87 @synthesize isCancelled ;92 @synthesize isCancelled=_isCancelled; 88 93 @end 89 94
Note:
See TracChangeset
for help on using the changeset viewer.