Changeset 221934 in webkit


Ignore:
Timestamp:
Sep 12, 2017, 12:39:56 PM (8 years ago)
Author:
mitz@apple.com
Message:

Tried to fix the iOS 10 build after r221930.

  • UIProcess/API/Cocoa/WKWebView.mm:

(-[WKWebView _initializeWithConfiguration:]):
(-[WKWebView _setDragInteractionPolicy:]):

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r221930 r221934  
     12017-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
    192017-09-12  Dan Bernstein  <mitz@apple.com>
    210
  • trunk/Source/WebKit/UIProcess/API/Cocoa/WKWebView.mm

    r221906 r221934  
    313313#endif
    314314
    315 #if PLATFORM(IOS) && ENABLE(DRAG_SUPPORT)
     315#if PLATFORM(IOS)
    316316    _WKDragInteractionPolicy _dragInteractionPolicy;
    317317#endif
     
    605605    pageToViewMap().add(_page.get(), self);
    606606
    607 #if PLATFORM(IOS) && ENABLE(DRAG_SUPPORT)
     607#if PLATFORM(IOS)
    608608    _dragInteractionPolicy = _WKDragInteractionPolicyDefault;
    609609#endif
     
    11341134#if PLATFORM(IOS)
    11351135
    1136 #if ENABLE(DRAG_SUPPORT)
    1137 
    11381136- (_WKDragInteractionPolicy)_dragInteractionPolicy
    11391137{
     
    11471145
    11481146    _dragInteractionPolicy = policy;
     1147#if ENABLE(DRAG_SUPPORT)
    11491148    [_contentView _didChangeDragInteractionPolicy];
    1150 }
    1151 
    1152 #endif
     1149#endif
     1150}
    11531151
    11541152- (void)_populateArchivedSubviews:(NSMutableSet *)encodedViews
Note: See TracChangeset for help on using the changeset viewer.