⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 243618 in webkit


Ignore:
Timestamp:
Mar 28, 2019, 1:00:36 PM (7 years ago)
Author:
timothy_horton@apple.com
Message:

Fix the build.

  • UIProcess/ios/WKActionSheetAssistant.mm:

(-[WKActionSheetAssistant showImageSheet]):

  • UIProcess/ios/WKContentViewInteraction.mm:

(-[WKContentView actionSheetAssistant:showCustomSheetForElement:]):

Location:
trunk/Source/WebKit
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r243608 r243618  
     12019-03-28  Tim Horton  <timothy_horton@apple.com>
     2
     3        Fix the build.
     4
     5        * UIProcess/ios/WKActionSheetAssistant.mm:
     6        (-[WKActionSheetAssistant showImageSheet]):
     7        * UIProcess/ios/WKContentViewInteraction.mm:
     8        (-[WKContentView actionSheetAssistant:showCustomSheetForElement:]):
     9
    1102019-03-28  Michael Catanzaro  <mcatanzaro@igalia.com>
    211
  • trunk/Source/WebKit/UIProcess/ios/WKActionSheetAssistant.mm

    r242824 r243618  
    407407
    408408        if (!alternateURL && userInfo) {
     409ALLOW_DEPRECATED_DECLARATIONS_BEGIN
    409410            [UIApp _cancelAllTouches];
     411ALLOW_DEPRECATED_DECLARATIONS_END
    410412            return;
    411413        }
  • trunk/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm

    r243606 r243618  
    58505850            BOOL shouldCancelAllTouches = YES;
    58515851#endif
     5852
     5853ALLOW_DEPRECATED_DECLARATIONS_BEGIN
    58525854            // Prevent tap-and-hold and panning.
    58535855            if (shouldCancelAllTouches)
    58545856                [UIApp _cancelAllTouches];
     5857ALLOW_DEPRECATED_DECLARATIONS_END
    58555858
    58565859            return YES;
Note: See TracChangeset for help on using the changeset viewer.