Title: [195919] trunk/Source/WebCore
Revision
195919
Author
mcatanz...@igalia.com
Date
2016-01-30 17:19:32 -0800 (Sat, 30 Jan 2016)

Log Message

Unreviewed, fix GTK debug build after r195899

* dom/EventContext.h:
(isType):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (195918 => 195919)


--- trunk/Source/WebCore/ChangeLog	2016-01-31 01:15:51 UTC (rev 195918)
+++ trunk/Source/WebCore/ChangeLog	2016-01-31 01:19:32 UTC (rev 195919)
@@ -1,3 +1,10 @@
+2016-01-30  Michael Catanzaro  <mcatanz...@igalia.com>
+
+        Unreviewed, fix GTK debug build after r195899
+
+        * dom/EventContext.h:
+        (isType):
+
 2016-01-30  Jeremy Huddleston Sequoia  <jerem...@apple.com>
 
         Add missing include to fix building debug configuration

Modified: trunk/Source/WebCore/dom/EventContext.h (195918 => 195919)


--- trunk/Source/WebCore/dom/EventContext.h	2016-01-31 01:15:51 UTC (rev 195918)
+++ trunk/Source/WebCore/dom/EventContext.h	2016-01-31 01:19:32 UTC (rev 195919)
@@ -160,4 +160,10 @@
 static bool isType(const WebCore::EventContext& context) { return context.isMouseOrFocusEventContext(); }
 SPECIALIZE_TYPE_TRAITS_END()
 
+#if ENABLE(TOUCH_EVENTS) && !PLATFORM(IOS)
+SPECIALIZE_TYPE_TRAITS_BEGIN(WebCore::TouchEventContext)
+static bool isType(const WebCore::EventContext& context) { return context.isTouchEventContext(); }
+SPECIALIZE_TYPE_TRAITS_END()
+#endif
+
 #endif // EventContext_h
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to