Title: [190713] trunk/Source/WebCore
Revision
190713
Author
[email protected]
Date
2015-10-08 00:21:41 -0700 (Thu, 08 Oct 2015)

Log Message

WebRTC: Add event names needed by updated RTCPeerConnection
https://bugs.webkit.org/show_bug.cgi?id=149875

Patch by Philippe Normand <[email protected]> on 2015-10-08
Reviewed by Eric Carlson.

The track event name was recently added in the WebRTC spec. The
icegatheringstatechange event has been part of the spec for a while but
was not registered in our DOM events.

* dom/EventNames.h: Add track and icegatheringstatechange even names.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (190712 => 190713)


--- trunk/Source/WebCore/ChangeLog	2015-10-08 07:19:07 UTC (rev 190712)
+++ trunk/Source/WebCore/ChangeLog	2015-10-08 07:21:41 UTC (rev 190713)
@@ -1,3 +1,16 @@
+2015-10-08  Philippe Normand  <[email protected]>
+
+        WebRTC: Add event names needed by updated RTCPeerConnection
+        https://bugs.webkit.org/show_bug.cgi?id=149875
+
+        Reviewed by Eric Carlson.
+
+        The track event name was recently added in the WebRTC spec. The
+        icegatheringstatechange event has been part of the spec for a while but
+        was not registered in our DOM events.
+
+        * dom/EventNames.h: Add track and icegatheringstatechange even names.
+
 2015-10-07  Keith Rollin  <[email protected]>
 
         script.text shouldn't include text from non-direct children of the script element

Modified: trunk/Source/WebCore/dom/EventNames.h (190712 => 190713)


--- trunk/Source/WebCore/dom/EventNames.h	2015-10-08 07:19:07 UTC (rev 190712)
+++ trunk/Source/WebCore/dom/EventNames.h	2015-10-08 07:21:41 UTC (rev 190713)
@@ -116,6 +116,7 @@
     macro(hashchange) \
     macro(icecandidate) \
     macro(iceconnectionstatechange) \
+    macro(icegatheringstatechange) \
     macro(inactive) \
     macro(input) \
     macro(invalid) \
@@ -205,6 +206,7 @@
     macro(touchend) \
     macro(touchmove) \
     macro(touchstart) \
+    macro(track) \
     macro(transitionend) \
     macro(unload) \
     macro(unmute) \
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to