Changeset 246216 in webkit
- Timestamp:
- Jun 7, 2019, 3:18:40 PM (7 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 3 edited
-
ChangeLog (modified) (1 diff)
-
page/Quirks.cpp (modified) (1 diff)
-
page/Quirks.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r246215 r246216 1 2019-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 1 12 2019-06-07 Youenn Fablet <youenn@apple.com> 2 13 -
trunk/Source/WebCore/page/Quirks.cpp
r246205 r246216 283 283 } 284 284 285 #if PLATFORM(IOS_FAMILY)285 #if ENABLE(TOUCH_EVENTS) 286 286 bool Quirks::shouldDispatchSimulatedMouseEvents() const 287 287 { -
trunk/Source/WebCore/page/Quirks.h
r246205 r246216 50 50 bool hasBrokenEncryptedMediaAPISupportQuirk() const; 51 51 bool hasWebSQLSupportQuirk() const; 52 #if PLATFORM(IOS_FAMILY)52 #if ENABLE(TOUCH_EVENTS) 53 53 bool shouldDispatchSimulatedMouseEvents() const; 54 54 bool shouldDispatchSimulatedMouseEventsOnTarget(EventTarget*) const;
Note:
See TracChangeset
for help on using the changeset viewer.