Changeset 221934 in webkit
- Timestamp:
- Sep 12, 2017, 12:39:56 PM (8 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r221930 r221934 1 2017-09-12 Dan Bernstein <mitz@apple.com> 2 3 Tried to fix the iOS 10 build after r221930. 4 5 * UIProcess/API/Cocoa/WKWebView.mm: 6 (-[WKWebView _initializeWithConfiguration:]): 7 (-[WKWebView _setDragInteractionPolicy:]): 8 1 9 2017-09-12 Dan Bernstein <mitz@apple.com> 2 10 -
trunk/Source/WebKit/UIProcess/API/Cocoa/WKWebView.mm
r221906 r221934 313 313 #endif 314 314 315 #if PLATFORM(IOS) && ENABLE(DRAG_SUPPORT)315 #if PLATFORM(IOS) 316 316 _WKDragInteractionPolicy _dragInteractionPolicy; 317 317 #endif … … 605 605 pageToViewMap().add(_page.get(), self); 606 606 607 #if PLATFORM(IOS) && ENABLE(DRAG_SUPPORT)607 #if PLATFORM(IOS) 608 608 _dragInteractionPolicy = _WKDragInteractionPolicyDefault; 609 609 #endif … … 1134 1134 #if PLATFORM(IOS) 1135 1135 1136 #if ENABLE(DRAG_SUPPORT)1137 1138 1136 - (_WKDragInteractionPolicy)_dragInteractionPolicy 1139 1137 { … … 1147 1145 1148 1146 _dragInteractionPolicy = policy; 1147 #if ENABLE(DRAG_SUPPORT) 1149 1148 [_contentView _didChangeDragInteractionPolicy]; 1150 } 1151 1152 #endif 1149 #endif 1150 } 1153 1151 1154 1152 - (void)_populateArchivedSubviews:(NSMutableSet *)encodedViews
Note:
See TracChangeset
for help on using the changeset viewer.