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

Changeset 246216 in webkit


Ignore:
Timestamp:
Jun 7, 2019, 3:18:40 PM (7 years ago)
Author:
Michael Catanzaro
Message:

Fix non-iOS build after r246205
https://bugs.webkit.org/show_bug.cgi?id=198657

Reviewed by Brent Fulgham.
<rdar://problem/51345064>

  • page/Quirks.cpp:
  • page/Quirks.h:
Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r246215 r246216  
     12019-06-07  Michael Catanzaro  <mcatanzaro@igalia.com>
     2
     3        Fix non-iOS build after r246205
     4        https://bugs.webkit.org/show_bug.cgi?id=198657
     5
     6        Reviewed by Brent Fulgham.
     7        <rdar://problem/51345064>
     8
     9        * page/Quirks.cpp:
     10        * page/Quirks.h:
     11
    1122019-06-07  Youenn Fablet  <youenn@apple.com>
    213
  • trunk/Source/WebCore/page/Quirks.cpp

    r246205 r246216  
    283283}
    284284
    285 #if PLATFORM(IOS_FAMILY)
     285#if ENABLE(TOUCH_EVENTS)
    286286bool Quirks::shouldDispatchSimulatedMouseEvents() const
    287287{
  • trunk/Source/WebCore/page/Quirks.h

    r246205 r246216  
    5050    bool hasBrokenEncryptedMediaAPISupportQuirk() const;
    5151    bool hasWebSQLSupportQuirk() const;
    52 #if PLATFORM(IOS_FAMILY)
     52#if ENABLE(TOUCH_EVENTS)
    5353    bool shouldDispatchSimulatedMouseEvents() const;
    5454    bool shouldDispatchSimulatedMouseEventsOnTarget(EventTarget*) const;
Note: See TracChangeset for help on using the changeset viewer.