Changeset 167287 in webkit


Ignore:
Timestamp:
Apr 14, 2014, 5:55:15 PM (11 years ago)
Author:
timothy_horton@apple.com
Message:

Fix the 32-bit build.

  • UIProcess/mac/ViewGestureControllerMac.mm:
Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r167286 r167287  
     12014-04-14  Tim Horton  <timothy_horton@apple.com>
     2
     3        Fix the 32-bit build.
     4
     5        * UIProcess/mac/ViewGestureControllerMac.mm:
     6
    172014-04-14  Simon Fraser  <simon.fraser@apple.com>
    28
  • trunk/Source/WebKit2/UIProcess/mac/ViewGestureControllerMac.mm

    r167285 r167287  
    8080static const std::chrono::seconds swipeSnapshotRemovalWatchdogDuration = 3_s;
    8181
    82 @interface WKSwipeCancellationTracker : NSObject
     82@interface WKSwipeCancellationTracker : NSObject {
     83@private
     84    BOOL _isCancelled;
     85}
     86
    8387@property (nonatomic) BOOL isCancelled;
     88
    8489@end
    8590
    8691@implementation WKSwipeCancellationTracker
    87 @synthesize isCancelled;
     92@synthesize isCancelled=_isCancelled;
    8893@end
    8994
Note: See TracChangeset for help on using the changeset viewer.