Changeset 190713 in webkit


Ignore:
Timestamp:
Oct 8, 2015 12:21:41 AM (9 years ago)
Author:
commit-queue@webkit.org
Message:

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

Patch by Philippe Normand <pnormand@igalia.com> 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.
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r190703 r190713  
     12015-10-08  Philippe Normand  <pnormand@igalia.com>
     2
     3        WebRTC: Add event names needed by updated RTCPeerConnection
     4        https://bugs.webkit.org/show_bug.cgi?id=149875
     5
     6        Reviewed by Eric Carlson.
     7
     8        The track event name was recently added in the WebRTC spec. The
     9        icegatheringstatechange event has been part of the spec for a while but
     10        was not registered in our DOM events.
     11
     12        * dom/EventNames.h: Add track and icegatheringstatechange even names.
     13
    1142015-10-07  Keith Rollin  <krollin@apple.com>
    215
  • trunk/Source/WebCore/dom/EventNames.h

    r185678 r190713  
    117117    macro(icecandidate) \
    118118    macro(iceconnectionstatechange) \
     119    macro(icegatheringstatechange) \
    119120    macro(inactive) \
    120121    macro(input) \
     
    206207    macro(touchmove) \
    207208    macro(touchstart) \
     209    macro(track) \
    208210    macro(transitionend) \
    209211    macro(unload) \
Note: See TracChangeset for help on using the changeset viewer.