Title: [246216] trunk/Source/WebCore
- Revision
- 246216
- Author
- [email protected]
- Date
- 2019-06-07 15:18:40 -0700 (Fri, 07 Jun 2019)
Log 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:
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (246215 => 246216)
--- trunk/Source/WebCore/ChangeLog 2019-06-07 22:12:25 UTC (rev 246215)
+++ trunk/Source/WebCore/ChangeLog 2019-06-07 22:18:40 UTC (rev 246216)
@@ -1,3 +1,14 @@
+2019-06-07 Michael Catanzaro <[email protected]>
+
+ 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:
+
2019-06-07 Youenn Fablet <[email protected]>
mediaDevices.enumerateDevices() doesn't list the system default audio devices with deviceId as "default"
Modified: trunk/Source/WebCore/page/Quirks.cpp (246215 => 246216)
--- trunk/Source/WebCore/page/Quirks.cpp 2019-06-07 22:12:25 UTC (rev 246215)
+++ trunk/Source/WebCore/page/Quirks.cpp 2019-06-07 22:18:40 UTC (rev 246216)
@@ -282,7 +282,7 @@
return shouldSuppressAutocorrectionAndAutocaptializationInHiddenEditableAreasForHost(m_document->topDocument().url().host());
}
-#if PLATFORM(IOS_FAMILY)
+#if ENABLE(TOUCH_EVENTS)
bool Quirks::shouldDispatchSimulatedMouseEvents() const
{
if (!needsQuirks())
Modified: trunk/Source/WebCore/page/Quirks.h (246215 => 246216)
--- trunk/Source/WebCore/page/Quirks.h 2019-06-07 22:12:25 UTC (rev 246215)
+++ trunk/Source/WebCore/page/Quirks.h 2019-06-07 22:18:40 UTC (rev 246216)
@@ -49,7 +49,7 @@
bool shouldAutoplayForArbitraryUserGesture() const;
bool hasBrokenEncryptedMediaAPISupportQuirk() const;
bool hasWebSQLSupportQuirk() const;
-#if PLATFORM(IOS_FAMILY)
+#if ENABLE(TOUCH_EVENTS)
bool shouldDispatchSimulatedMouseEvents() const;
bool shouldDispatchSimulatedMouseEventsOnTarget(EventTarget*) const;
#endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes