Changeset 244751 in webkit


Ignore:
Timestamp:
Apr 29, 2019 1:34:16 PM (5 years ago)
Author:
dino@apple.com
Message:

Add InteractionIsHappening to SuppressSelectionAssistantReason
https://bugs.webkit.org/show_bug.cgi?id=197375
<rdar://problem/50304986>

Reviewed by Megan Gardner.

Add a new reason for suppressing the selection assistant, to
be used in a follow-up patch.

  • UIProcess/ios/WKContentViewInteraction.h: Add InteractionIsHappening.
Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r244750 r244751  
     12019-04-29  Dean Jackson  <dino@apple.com>
     2
     3        Add InteractionIsHappening to SuppressSelectionAssistantReason
     4        https://bugs.webkit.org/show_bug.cgi?id=197375
     5        <rdar://problem/50304986>
     6
     7        Reviewed by Megan Gardner.
     8
     9        Add a new reason for suppressing the selection assistant, to
     10        be used in a follow-up patch.
     11
     12        * UIProcess/ios/WKContentViewInteraction.h: Add InteractionIsHappening.
     13
    1142019-04-29  Alex Christensen  <achristensen@webkit.org>
    215
  • trunk/Source/WebKit/UIProcess/ios/WKContentViewInteraction.h

    r244586 r244751  
    172172    EditableRootIsTransparentOrFullyClipped = 1 << 0,
    173173    FocusedElementIsTooSmall = 1 << 1,
    174     DropAnimationIsRunning = 1 << 2
     174    DropAnimationIsRunning = 1 << 2,
     175    InteractionIsHappening = 1 << 3
    175176};
    176177
Note: See TracChangeset for help on using the changeset viewer.