<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>[214330] trunk/Source/WebCore</title>
</head>
<body>

<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; }
#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; }
#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; }
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; }
#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; }
#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;}
#logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; }
#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; }
#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; }
#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }
#logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<div id="msg">
<dl class="meta">
<dt>Revision</dt> <dd><a href="http://trac.webkit.org/projects/webkit/changeset/214330">214330</a></dd>
<dt>Author</dt> <dd>commit-queue@webkit.org</dd>
<dt>Date</dt> <dd>2017-03-23 18:40:50 -0700 (Thu, 23 Mar 2017)</dd>
</dl>

<h3>Log Message</h3>
<pre>Rename RTCIceCandidateEvent to RTCPeerConnectionIceEvent
https://bugs.webkit.org/show_bug.cgi?id=169981

Patch by Youenn Fablet &lt;youenn@apple.com&gt; on 2017-03-23
Reviewed by Eric Carlson.

* CMakeLists.txt:
* DerivedSources.make:
* Modules/mediastream/MediaEndpointPeerConnection.cpp:
* Modules/mediastream/PeerConnectionBackend.cpp:
(WebCore::PeerConnectionBackend::fireICECandidateEvent):
(WebCore::PeerConnectionBackend::doneGatheringCandidates):
* Modules/mediastream/RTCPeerConnection.cpp:
* Modules/mediastream/RTCPeerConnectionIceEvent.cpp: Renamed from Source/WebCore/Modules/mediastream/RTCIceCandidateEvent.cpp.
(WebCore::RTCPeerConnectionIceEvent::create):
(WebCore::RTCPeerConnectionIceEvent::RTCPeerConnectionIceEvent):
(WebCore::RTCPeerConnectionIceEvent::~RTCPeerConnectionIceEvent):
(WebCore::RTCPeerConnectionIceEvent::candidate):
(WebCore::RTCPeerConnectionIceEvent::eventInterface):
* Modules/mediastream/RTCPeerConnectionIceEvent.h: Renamed from Source/WebCore/Modules/mediastream/RTCIceCandidateEvent.h.
* Modules/mediastream/RTCPeerConnectionIceEvent.idl: Renamed from Source/WebCore/Modules/mediastream/RTCIceCandidateEvent.idl.
* WebCore.xcodeproj/project.pbxproj:
* dom/EventNames.in:</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkSourceWebCoreCMakeListstxt">trunk/Source/WebCore/CMakeLists.txt</a></li>
<li><a href="#trunkSourceWebCoreChangeLog">trunk/Source/WebCore/ChangeLog</a></li>
<li><a href="#trunkSourceWebCoreDerivedSourcescpp">trunk/Source/WebCore/DerivedSources.cpp</a></li>
<li><a href="#trunkSourceWebCoreDerivedSourcesmake">trunk/Source/WebCore/DerivedSources.make</a></li>
<li><a href="#trunkSourceWebCoreModulesmediastreamMediaEndpointPeerConnectioncpp">trunk/Source/WebCore/Modules/mediastream/MediaEndpointPeerConnection.cpp</a></li>
<li><a href="#trunkSourceWebCoreModulesmediastreamPeerConnectionBackendcpp">trunk/Source/WebCore/Modules/mediastream/PeerConnectionBackend.cpp</a></li>
<li><a href="#trunkSourceWebCoreModulesmediastreamRTCPeerConnectioncpp">trunk/Source/WebCore/Modules/mediastream/RTCPeerConnection.cpp</a></li>
<li><a href="#trunkSourceWebCoreWebCorexcodeprojprojectpbxproj">trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj</a></li>
<li><a href="#trunkSourceWebCoredomEventNamesin">trunk/Source/WebCore/dom/EventNames.in</a></li>
</ul>

<h3>Added Paths</h3>
<ul>
<li><a href="#trunkSourceWebCoreModulesmediastreamRTCPeerConnectionIceEventcpp">trunk/Source/WebCore/Modules/mediastream/RTCPeerConnectionIceEvent.cpp</a></li>
<li><a href="#trunkSourceWebCoreModulesmediastreamRTCPeerConnectionIceEventh">trunk/Source/WebCore/Modules/mediastream/RTCPeerConnectionIceEvent.h</a></li>
<li><a href="#trunkSourceWebCoreModulesmediastreamRTCPeerConnectionIceEventidl">trunk/Source/WebCore/Modules/mediastream/RTCPeerConnectionIceEvent.idl</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkSourceWebCoreCMakeListstxt"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/CMakeLists.txt (214329 => 214330)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/CMakeLists.txt        2017-03-24 01:36:06 UTC (rev 214329)
+++ trunk/Source/WebCore/CMakeLists.txt        2017-03-24 01:40:50 UTC (rev 214330)
</span><span class="lines">@@ -240,7 +240,6 @@
</span><span class="cx">     Modules/mediastream/RTCDataChannel.idl
</span><span class="cx">     Modules/mediastream/RTCDataChannelEvent.idl
</span><span class="cx">     Modules/mediastream/RTCIceCandidate.idl
</span><del>-    Modules/mediastream/RTCIceCandidateEvent.idl
</del><span class="cx">     Modules/mediastream/RTCIceConnectionState.idl
</span><span class="cx">     Modules/mediastream/RTCIceGatheringState.idl
</span><span class="cx">     Modules/mediastream/RTCIceServer.idl
</span><span class="lines">@@ -249,6 +248,7 @@
</span><span class="cx">     Modules/mediastream/RTCOfferAnswerOptions.idl
</span><span class="cx">     Modules/mediastream/RTCOfferOptions.idl
</span><span class="cx">     Modules/mediastream/RTCPeerConnection.idl
</span><ins>+    Modules/mediastream/RTCPeerConnectionIceEvent.idl
</ins><span class="cx">     Modules/mediastream/RTCPeerConnectionState.idl
</span><span class="cx">     Modules/mediastream/RTCRtpReceiver.idl
</span><span class="cx">     Modules/mediastream/RTCRtpSender.idl
</span><span class="lines">@@ -965,8 +965,8 @@
</span><span class="cx">     Modules/mediastream/RTCDataChannel.cpp
</span><span class="cx">     Modules/mediastream/RTCDataChannelEvent.cpp
</span><span class="cx">     Modules/mediastream/RTCIceCandidate.cpp
</span><del>-    Modules/mediastream/RTCIceCandidateEvent.cpp
</del><span class="cx">     Modules/mediastream/RTCPeerConnection.cpp
</span><ins>+    Modules/mediastream/RTCPeerConnectionIceEvent.cpp
</ins><span class="cx">     Modules/mediastream/RTCRtpReceiver.cpp
</span><span class="cx">     Modules/mediastream/RTCRtpSender.cpp
</span><span class="cx">     Modules/mediastream/RTCRtpTransceiver.cpp
</span></span></pre></div>
<a id="trunkSourceWebCoreChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/ChangeLog (214329 => 214330)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/ChangeLog        2017-03-24 01:36:06 UTC (rev 214329)
+++ trunk/Source/WebCore/ChangeLog        2017-03-24 01:40:50 UTC (rev 214330)
</span><span class="lines">@@ -1,3 +1,28 @@
</span><ins>+2017-03-23  Youenn Fablet  &lt;youenn@apple.com&gt;
+
+        Rename RTCIceCandidateEvent to RTCPeerConnectionIceEvent
+        https://bugs.webkit.org/show_bug.cgi?id=169981
+
+        Reviewed by Eric Carlson.
+
+        * CMakeLists.txt:
+        * DerivedSources.make:
+        * Modules/mediastream/MediaEndpointPeerConnection.cpp:
+        * Modules/mediastream/PeerConnectionBackend.cpp:
+        (WebCore::PeerConnectionBackend::fireICECandidateEvent):
+        (WebCore::PeerConnectionBackend::doneGatheringCandidates):
+        * Modules/mediastream/RTCPeerConnection.cpp:
+        * Modules/mediastream/RTCPeerConnectionIceEvent.cpp: Renamed from Source/WebCore/Modules/mediastream/RTCIceCandidateEvent.cpp.
+        (WebCore::RTCPeerConnectionIceEvent::create):
+        (WebCore::RTCPeerConnectionIceEvent::RTCPeerConnectionIceEvent):
+        (WebCore::RTCPeerConnectionIceEvent::~RTCPeerConnectionIceEvent):
+        (WebCore::RTCPeerConnectionIceEvent::candidate):
+        (WebCore::RTCPeerConnectionIceEvent::eventInterface):
+        * Modules/mediastream/RTCPeerConnectionIceEvent.h: Renamed from Source/WebCore/Modules/mediastream/RTCIceCandidateEvent.h.
+        * Modules/mediastream/RTCPeerConnectionIceEvent.idl: Renamed from Source/WebCore/Modules/mediastream/RTCIceCandidateEvent.idl.
+        * WebCore.xcodeproj/project.pbxproj:
+        * dom/EventNames.in:
+
</ins><span class="cx"> 2017-03-23  Michael Catanzaro  &lt;mcatanzaro@igalia.com&gt;
</span><span class="cx"> 
</span><span class="cx">         window.crypto.getRandomValues() uses the insecure RC4 RNG
</span></span></pre></div>
<a id="trunkSourceWebCoreDerivedSourcescpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/DerivedSources.cpp (214329 => 214330)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/DerivedSources.cpp        2017-03-24 01:36:06 UTC (rev 214329)
+++ trunk/Source/WebCore/DerivedSources.cpp        2017-03-24 01:40:50 UTC (rev 214330)
</span><span class="lines">@@ -396,9 +396,9 @@
</span><span class="cx"> #include &quot;JSRTCDTMFSender.cpp&quot;
</span><span class="cx"> #include &quot;JSRTCDTMFToneChangeEvent.cpp&quot;
</span><span class="cx"> #include &quot;JSRTCIceCandidate.cpp&quot;
</span><del>-#include &quot;JSRTCIceCandidateEvent.cpp&quot;
</del><span class="cx"> #include &quot;JSRTCIceServer.cpp&quot;
</span><span class="cx"> #include &quot;JSRTCPeerConnection.cpp&quot;
</span><ins>+#include &quot;JSRTCPeerConnectionIceEvent.cpp&quot;
</ins><span class="cx"> #include &quot;JSRTCRtpReceiver.cpp&quot;
</span><span class="cx"> #include &quot;JSRTCRtpSender.cpp&quot;
</span><span class="cx"> #include &quot;JSRTCSessionDescription.cpp&quot;
</span></span></pre></div>
<a id="trunkSourceWebCoreDerivedSourcesmake"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/DerivedSources.make (214329 => 214330)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/DerivedSources.make        2017-03-24 01:36:06 UTC (rev 214329)
+++ trunk/Source/WebCore/DerivedSources.make        2017-03-24 01:40:50 UTC (rev 214330)
</span><span class="lines">@@ -184,7 +184,7 @@
</span><span class="cx">     $(WebCore)/Modules/mediastream/RTCDataChannel.idl \
</span><span class="cx">     $(WebCore)/Modules/mediastream/RTCDataChannelEvent.idl \
</span><span class="cx">     $(WebCore)/Modules/mediastream/RTCIceCandidate.idl \
</span><del>-    $(WebCore)/Modules/mediastream/RTCIceCandidateEvent.idl \
</del><ins>+    $(WebCore)/Modules/mediastream/RTCPeerConnectionIceEvent.idl \
</ins><span class="cx">     $(WebCore)/Modules/mediastream/RTCIceConnectionState.idl \
</span><span class="cx">     $(WebCore)/Modules/mediastream/RTCIceGatheringState.idl \
</span><span class="cx">     $(WebCore)/Modules/mediastream/RTCIceServer.idl \
</span></span></pre></div>
<a id="trunkSourceWebCoreModulesmediastreamMediaEndpointPeerConnectioncpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/Modules/mediastream/MediaEndpointPeerConnection.cpp (214329 => 214330)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/Modules/mediastream/MediaEndpointPeerConnection.cpp        2017-03-24 01:36:06 UTC (rev 214329)
+++ trunk/Source/WebCore/Modules/mediastream/MediaEndpointPeerConnection.cpp        2017-03-24 01:40:50 UTC (rev 214330)
</span><span class="lines">@@ -46,9 +46,9 @@
</span><span class="cx"> #include &quot;RTCAnswerOptions.h&quot;
</span><span class="cx"> #include &quot;RTCConfiguration.h&quot;
</span><span class="cx"> #include &quot;RTCIceCandidate.h&quot;
</span><del>-#include &quot;RTCIceCandidateEvent.h&quot;
</del><span class="cx"> #include &quot;RTCOfferOptions.h&quot;
</span><span class="cx"> #include &quot;RTCPeerConnection.h&quot;
</span><ins>+#include &quot;RTCPeerConnectionIceEvent.h&quot;
</ins><span class="cx"> #include &quot;RTCRtpTransceiver.h&quot;
</span><span class="cx"> #include &quot;RTCTrackEvent.h&quot;
</span><span class="cx"> #include &quot;SDPProcessor.h&quot;
</span></span></pre></div>
<a id="trunkSourceWebCoreModulesmediastreamPeerConnectionBackendcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/Modules/mediastream/PeerConnectionBackend.cpp (214329 => 214330)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/Modules/mediastream/PeerConnectionBackend.cpp        2017-03-24 01:36:06 UTC (rev 214329)
+++ trunk/Source/WebCore/Modules/mediastream/PeerConnectionBackend.cpp        2017-03-24 01:40:50 UTC (rev 214330)
</span><span class="lines">@@ -37,8 +37,8 @@
</span><span class="cx"> #include &quot;EventNames.h&quot;
</span><span class="cx"> #include &quot;JSRTCSessionDescription.h&quot;
</span><span class="cx"> #include &quot;RTCIceCandidate.h&quot;
</span><del>-#include &quot;RTCIceCandidateEvent.h&quot;
</del><span class="cx"> #include &quot;RTCPeerConnection.h&quot;
</span><ins>+#include &quot;RTCPeerConnectionIceEvent.h&quot;
</ins><span class="cx"> #include &lt;wtf/text/StringBuilder.h&gt;
</span><span class="cx"> 
</span><span class="cx"> namespace WebCore {
</span><span class="lines">@@ -267,7 +267,7 @@
</span><span class="cx"> {
</span><span class="cx">     ASSERT(isMainThread());
</span><span class="cx"> 
</span><del>-    m_peerConnection.fireEvent(RTCIceCandidateEvent::create(false, false, WTFMove(candidate)));
</del><ins>+    m_peerConnection.fireEvent(RTCPeerConnectionIceEvent::create(false, false, WTFMove(candidate)));
</ins><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> void PeerConnectionBackend::enableICECandidateFiltering()
</span><span class="lines">@@ -331,7 +331,7 @@
</span><span class="cx"> {
</span><span class="cx">     ASSERT(isMainThread());
</span><span class="cx"> 
</span><del>-    m_peerConnection.fireEvent(RTCIceCandidateEvent::create(false, false, nullptr));
</del><ins>+    m_peerConnection.fireEvent(RTCPeerConnectionIceEvent::create(false, false, nullptr));
</ins><span class="cx">     m_peerConnection.updateIceGatheringState(RTCIceGatheringState::Complete);
</span><span class="cx"> }
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkSourceWebCoreModulesmediastreamRTCPeerConnectioncpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/Modules/mediastream/RTCPeerConnection.cpp (214329 => 214330)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/Modules/mediastream/RTCPeerConnection.cpp        2017-03-24 01:36:06 UTC (rev 214329)
+++ trunk/Source/WebCore/Modules/mediastream/RTCPeerConnection.cpp        2017-03-24 01:40:50 UTC (rev 214330)
</span><span class="lines">@@ -48,7 +48,7 @@
</span><span class="cx"> #include &quot;RTCController.h&quot;
</span><span class="cx"> #include &quot;RTCDataChannel.h&quot;
</span><span class="cx"> #include &quot;RTCIceCandidate.h&quot;
</span><del>-#include &quot;RTCIceCandidateEvent.h&quot;
</del><ins>+#include &quot;RTCPeerConnectionIceEvent.h&quot;
</ins><span class="cx"> #include &quot;RTCSessionDescription.h&quot;
</span><span class="cx"> #include &quot;RTCTrackEvent.h&quot;
</span><span class="cx"> #include &quot;UUID.h&quot;
</span></span></pre></div>
<a id="trunkSourceWebCoreModulesmediastreamRTCPeerConnectionIceEventcpp"></a>
<div class="addfile"><h4>Added: trunk/Source/WebCore/Modules/mediastream/RTCPeerConnectionIceEvent.cpp (0 => 214330)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/Modules/mediastream/RTCPeerConnectionIceEvent.cpp                                (rev 0)
+++ trunk/Source/WebCore/Modules/mediastream/RTCPeerConnectionIceEvent.cpp        2017-03-24 01:40:50 UTC (rev 214330)
</span><span class="lines">@@ -0,0 +1,62 @@
</span><ins>+/*
+ * Copyright (C) 2012 Google Inc. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1.  Redistributions of source code must retain the above copyright
+ *     notice, this list of conditions and the following disclaimer.
+ * 2.  Redistributions in binary form must reproduce the above copyright
+ *     notice, this list of conditions and the following disclaimer in the
+ *     documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND ANY
+ * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ * DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY
+ * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include &quot;config.h&quot;
+#include &quot;RTCPeerConnectionIceEvent.h&quot;
+
+#if ENABLE(WEB_RTC)
+
+#include &quot;EventNames.h&quot;
+#include &quot;RTCIceCandidate.h&quot;
+
+namespace WebCore {
+
+Ref&lt;RTCPeerConnectionIceEvent&gt; RTCPeerConnectionIceEvent::create(bool canBubble, bool cancelable, RefPtr&lt;RTCIceCandidate&gt;&amp;&amp; candidate)
+{
+    return adoptRef(*new RTCPeerConnectionIceEvent(canBubble, cancelable, WTFMove(candidate)));
+}
+
+RTCPeerConnectionIceEvent::RTCPeerConnectionIceEvent(bool canBubble, bool cancelable, RefPtr&lt;RTCIceCandidate&gt;&amp;&amp; candidate)
+    : Event(eventNames().icecandidateEvent, canBubble, cancelable)
+    , m_candidate(WTFMove(candidate))
+{
+}
+
+RTCPeerConnectionIceEvent::~RTCPeerConnectionIceEvent()
+{
+}
+
+RTCIceCandidate* RTCPeerConnectionIceEvent::candidate() const
+{
+    return m_candidate.get();
+}
+
+EventInterface RTCPeerConnectionIceEvent::eventInterface() const
+{
+    return RTCPeerConnectionIceEventInterfaceType;
+}
+
+} // namespace WebCore
+
+#endif // ENABLE(WEB_RTC)
</ins></span></pre></div>
<a id="trunkSourceWebCoreModulesmediastreamRTCPeerConnectionIceEventh"></a>
<div class="addfile"><h4>Added: trunk/Source/WebCore/Modules/mediastream/RTCPeerConnectionIceEvent.h (0 => 214330)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/Modules/mediastream/RTCPeerConnectionIceEvent.h                                (rev 0)
+++ trunk/Source/WebCore/Modules/mediastream/RTCPeerConnectionIceEvent.h        2017-03-24 01:40:50 UTC (rev 214330)
</span><span class="lines">@@ -0,0 +1,53 @@
</span><ins>+/*
+ * Copyright (C) 2011 Google Inc. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1.  Redistributions of source code must retain the above copyright
+ *     notice, this list of conditions and the following disclaimer.
+ * 2.  Redistributions in binary form must reproduce the above copyright
+ *     notice, this list of conditions and the following disclaimer in the
+ *     documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND ANY
+ * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ * DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY
+ * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#pragma once
+
+#if ENABLE(WEB_RTC)
+
+#include &quot;Event.h&quot;
+#include &lt;wtf/text/AtomicString.h&gt;
+
+namespace WebCore {
+class RTCIceCandidate;
+
+class RTCPeerConnectionIceEvent : public Event {
+public:
+    virtual ~RTCPeerConnectionIceEvent();
+
+    static Ref&lt;RTCPeerConnectionIceEvent&gt; create(bool canBubble, bool cancelable, RefPtr&lt;RTCIceCandidate&gt;&amp;&amp;);
+
+    RTCIceCandidate* candidate() const;
+
+    virtual EventInterface eventInterface() const;
+
+private:
+    RTCPeerConnectionIceEvent(bool canBubble, bool cancelable, RefPtr&lt;RTCIceCandidate&gt;&amp;&amp;);
+
+    RefPtr&lt;RTCIceCandidate&gt; m_candidate;
+};
+
+} // namespace WebCore
+
+#endif // ENABLE(WEB_RTC)
</ins></span></pre></div>
<a id="trunkSourceWebCoreModulesmediastreamRTCPeerConnectionIceEventidl"></a>
<div class="addfile"><h4>Added: trunk/Source/WebCore/Modules/mediastream/RTCPeerConnectionIceEvent.idl (0 => 214330)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/Modules/mediastream/RTCPeerConnectionIceEvent.idl                                (rev 0)
+++ trunk/Source/WebCore/Modules/mediastream/RTCPeerConnectionIceEvent.idl        2017-03-24 01:40:50 UTC (rev 214330)
</span><span class="lines">@@ -0,0 +1,34 @@
</span><ins>+/*
+ * Copyright (C) 2012 Google Inc. All rights reserved.
+ * Copyright (C) 2017 Apple Inc. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1.  Redistributions of source code must retain the above copyright
+ *     notice, this list of conditions and the following disclaimer.
+ * 2.  Redistributions in binary form must reproduce the above copyright
+ *     notice, this list of conditions and the following disclaimer in the
+ *     documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND ANY
+ * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ * DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY
+ * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+// FIXME 169662: missing Constructor(DOMString type, optional RTCPeerConnectionIceEventInit eventInitDict)
+[
+    NoInterfaceObject,
+    Conditional=WEB_RTC,
+    EnabledAtRuntime=PeerConnection
+] interface RTCPeerConnectionIceEvent : Event {
+    readonly attribute RTCIceCandidate? candidate;
+    // FIXME 169662: missing url
+};
</ins></span></pre></div>
<a id="trunkSourceWebCoreWebCorexcodeprojprojectpbxproj"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj (214329 => 214330)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj        2017-03-24 01:36:06 UTC (rev 214329)
+++ trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj        2017-03-24 01:40:50 UTC (rev 214330)
</span><span class="lines">@@ -190,7 +190,7 @@
</span><span class="cx">                 078E090717D14CEE00420AA1 /* RTCDTMFSender.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07221B6917CEC32700848E51 /* RTCDTMFSender.cpp */; };
</span><span class="cx">                 078E090817D14CEE00420AA1 /* RTCDTMFToneChangeEvent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07221B6C17CEC32700848E51 /* RTCDTMFToneChangeEvent.cpp */; };
</span><span class="cx">                 078E090917D14CEE00420AA1 /* RTCIceCandidate.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07221B7117CEC32700848E51 /* RTCIceCandidate.cpp */; };
</span><del>-                078E090A17D14CEE00420AA1 /* RTCIceCandidateEvent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07221B7417CEC32700848E51 /* RTCIceCandidateEvent.cpp */; };
</del><ins>+                078E090A17D14CEE00420AA1 /* RTCPeerConnectionIceEvent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07221B7417CEC32700848E51 /* RTCPeerConnectionIceEvent.cpp */; };
</ins><span class="cx">                 078E090B17D14CEE00420AA1 /* RTCPeerConnection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07221B7717CEC32700848E51 /* RTCPeerConnection.cpp */; };
</span><span class="cx">                 078E090C17D14CEE00420AA1 /* RTCSessionDescription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07221B7A17CEC32700848E51 /* RTCSessionDescription.cpp */; };
</span><span class="cx">                 078E091217D14CEE00420AA1 /* UserMediaController.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07221B8E17CEC32700848E51 /* UserMediaController.cpp */; };
</span><span class="lines">@@ -206,7 +206,7 @@
</span><span class="cx">                 078E092017D14D1C00420AA1 /* RTCDTMFSender.h in Headers */ = {isa = PBXBuildFile; fileRef = 07221B6A17CEC32700848E51 /* RTCDTMFSender.h */; settings = {ATTRIBUTES = (Private, ); }; };
</span><span class="cx">                 078E092117D14D1C00420AA1 /* RTCDTMFToneChangeEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 07221B6D17CEC32700848E51 /* RTCDTMFToneChangeEvent.h */; settings = {ATTRIBUTES = (Private, ); }; };
</span><span class="cx">                 078E092317D14D1C00420AA1 /* RTCIceCandidate.h in Headers */ = {isa = PBXBuildFile; fileRef = 07221B7217CEC32700848E51 /* RTCIceCandidate.h */; settings = {ATTRIBUTES = (Private, ); }; };
</span><del>-                078E092417D14D1C00420AA1 /* RTCIceCandidateEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 07221B7517CEC32700848E51 /* RTCIceCandidateEvent.h */; settings = {ATTRIBUTES = (Private, ); }; };
</del><ins>+                078E092417D14D1C00420AA1 /* RTCPeerConnectionIceEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 07221B7517CEC32700848E51 /* RTCPeerConnectionIceEvent.h */; settings = {ATTRIBUTES = (Private, ); }; };
</ins><span class="cx">                 078E092517D14D1C00420AA1 /* RTCPeerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 07221B7817CEC32700848E51 /* RTCPeerConnection.h */; };
</span><span class="cx">                 078E092617D14D1C00420AA1 /* RTCSessionDescription.h in Headers */ = {isa = PBXBuildFile; fileRef = 07221B7B17CEC32700848E51 /* RTCSessionDescription.h */; settings = {ATTRIBUTES = (Private, ); }; };
</span><span class="cx">                 078E092A17D14D1C00420AA1 /* RTCStatsReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 07221B8417CEC32700848E51 /* RTCStatsReport.h */; settings = {ATTRIBUTES = (Private, ); }; };
</span><span class="lines">@@ -244,8 +244,8 @@
</span><span class="cx">                 07969DB217D14151007FF842 /* JSRTCDTMFToneChangeEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 07969D9817D14151007FF842 /* JSRTCDTMFToneChangeEvent.h */; };
</span><span class="cx">                 07969DB517D14151007FF842 /* JSRTCIceCandidate.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07969D9B17D14151007FF842 /* JSRTCIceCandidate.cpp */; };
</span><span class="cx">                 07969DB617D14151007FF842 /* JSRTCIceCandidate.h in Headers */ = {isa = PBXBuildFile; fileRef = 07969D9C17D14151007FF842 /* JSRTCIceCandidate.h */; };
</span><del>-                07969DB717D14151007FF842 /* JSRTCIceCandidateEvent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07969D9D17D14151007FF842 /* JSRTCIceCandidateEvent.cpp */; };
-                07969DB817D14151007FF842 /* JSRTCIceCandidateEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 07969D9E17D14151007FF842 /* JSRTCIceCandidateEvent.h */; };
</del><ins>+                07969DB717D14151007FF842 /* JSRTCPeerConnectionIceEvent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07969D9D17D14151007FF842 /* JSRTCPeerConnectionIceEvent.cpp */; };
+                07969DB817D14151007FF842 /* JSRTCPeerConnectionIceEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 07969D9E17D14151007FF842 /* JSRTCPeerConnectionIceEvent.h */; };
</ins><span class="cx">                 07969DB917D14151007FF842 /* JSRTCPeerConnection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07969D9F17D14151007FF842 /* JSRTCPeerConnection.cpp */; };
</span><span class="cx">                 07969DBA17D14151007FF842 /* JSRTCPeerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 07969DA017D14151007FF842 /* JSRTCPeerConnection.h */; };
</span><span class="cx">                 07969DBB17D14151007FF842 /* JSRTCSessionDescription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07969DA117D14151007FF842 /* JSRTCSessionDescription.cpp */; };
</span><span class="lines">@@ -7429,9 +7429,9 @@
</span><span class="cx">                 07221B7117CEC32700848E51 /* RTCIceCandidate.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RTCIceCandidate.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 07221B7217CEC32700848E51 /* RTCIceCandidate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RTCIceCandidate.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 07221B7317CEC32700848E51 /* RTCIceCandidate.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = RTCIceCandidate.idl; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><del>-                07221B7417CEC32700848E51 /* RTCIceCandidateEvent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RTCIceCandidateEvent.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
-                07221B7517CEC32700848E51 /* RTCIceCandidateEvent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RTCIceCandidateEvent.h; sourceTree = &quot;&lt;group&gt;&quot;; };
-                07221B7617CEC32700848E51 /* RTCIceCandidateEvent.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = RTCIceCandidateEvent.idl; sourceTree = &quot;&lt;group&gt;&quot;; };
</del><ins>+                07221B7417CEC32700848E51 /* RTCPeerConnectionIceEvent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RTCPeerConnectionIceEvent.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
+                07221B7517CEC32700848E51 /* RTCPeerConnectionIceEvent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RTCPeerConnectionIceEvent.h; sourceTree = &quot;&lt;group&gt;&quot;; };
+                07221B7617CEC32700848E51 /* RTCPeerConnectionIceEvent.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = RTCPeerConnectionIceEvent.idl; sourceTree = &quot;&lt;group&gt;&quot;; };
</ins><span class="cx">                 07221B7717CEC32700848E51 /* RTCPeerConnection.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RTCPeerConnection.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 07221B7817CEC32700848E51 /* RTCPeerConnection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RTCPeerConnection.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 07221B7917CEC32700848E51 /* RTCPeerConnection.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = RTCPeerConnection.idl; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="lines">@@ -7554,8 +7554,8 @@
</span><span class="cx">                 07969D9817D14151007FF842 /* JSRTCDTMFToneChangeEvent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSRTCDTMFToneChangeEvent.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 07969D9B17D14151007FF842 /* JSRTCIceCandidate.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSRTCIceCandidate.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 07969D9C17D14151007FF842 /* JSRTCIceCandidate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSRTCIceCandidate.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><del>-                07969D9D17D14151007FF842 /* JSRTCIceCandidateEvent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSRTCIceCandidateEvent.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
-                07969D9E17D14151007FF842 /* JSRTCIceCandidateEvent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSRTCIceCandidateEvent.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</del><ins>+                07969D9D17D14151007FF842 /* JSRTCPeerConnectionIceEvent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSRTCPeerConnectionIceEvent.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
+                07969D9E17D14151007FF842 /* JSRTCPeerConnectionIceEvent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSRTCPeerConnectionIceEvent.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</ins><span class="cx">                 07969D9F17D14151007FF842 /* JSRTCPeerConnection.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSRTCPeerConnection.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 07969DA017D14151007FF842 /* JSRTCPeerConnection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSRTCPeerConnection.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 07969DA117D14151007FF842 /* JSRTCSessionDescription.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSRTCSessionDescription.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="lines">@@ -15928,9 +15928,9 @@
</span><span class="cx">                                 07221B7117CEC32700848E51 /* RTCIceCandidate.cpp */,
</span><span class="cx">                                 07221B7217CEC32700848E51 /* RTCIceCandidate.h */,
</span><span class="cx">                                 07221B7317CEC32700848E51 /* RTCIceCandidate.idl */,
</span><del>-                                07221B7417CEC32700848E51 /* RTCIceCandidateEvent.cpp */,
-                                07221B7517CEC32700848E51 /* RTCIceCandidateEvent.h */,
-                                07221B7617CEC32700848E51 /* RTCIceCandidateEvent.idl */,
</del><ins>+                                07221B7417CEC32700848E51 /* RTCPeerConnectionIceEvent.cpp */,
+                                07221B7517CEC32700848E51 /* RTCPeerConnectionIceEvent.h */,
+                                07221B7617CEC32700848E51 /* RTCPeerConnectionIceEvent.idl */,
</ins><span class="cx">                                 316DCB3B1E790E2C001B5F87 /* RTCIceConnectionState.idl */,
</span><span class="cx">                                 316DCB351E790E1B001B5F87 /* RTCIceGatheringState.idl */,
</span><span class="cx">                                 07AB996718DA3C010018771E /* RTCIceServer.h */,
</span><span class="lines">@@ -16164,8 +16164,8 @@
</span><span class="cx">                                 07969D9817D14151007FF842 /* JSRTCDTMFToneChangeEvent.h */,
</span><span class="cx">                                 07969D9B17D14151007FF842 /* JSRTCIceCandidate.cpp */,
</span><span class="cx">                                 07969D9C17D14151007FF842 /* JSRTCIceCandidate.h */,
</span><del>-                                07969D9D17D14151007FF842 /* JSRTCIceCandidateEvent.cpp */,
-                                07969D9E17D14151007FF842 /* JSRTCIceCandidateEvent.h */,
</del><ins>+                                07969D9D17D14151007FF842 /* JSRTCPeerConnectionIceEvent.cpp */,
+                                07969D9E17D14151007FF842 /* JSRTCPeerConnectionIceEvent.h */,
</ins><span class="cx">                                 316DCB451E7910A6001B5F87 /* JSRTCIceConnectionState.cpp */,
</span><span class="cx">                                 316DCB461E7910A6001B5F87 /* JSRTCIceConnectionState.h */,
</span><span class="cx">                                 316DCB471E7910A6001B5F87 /* JSRTCIceGatheringState.cpp */,
</span><span class="lines">@@ -27835,7 +27835,7 @@
</span><span class="cx">                                 07969DB017D14151007FF842 /* JSRTCDTMFSender.h in Headers */,
</span><span class="cx">                                 07969DB217D14151007FF842 /* JSRTCDTMFToneChangeEvent.h in Headers */,
</span><span class="cx">                                 07969DB617D14151007FF842 /* JSRTCIceCandidate.h in Headers */,
</span><del>-                                07969DB817D14151007FF842 /* JSRTCIceCandidateEvent.h in Headers */,
</del><ins>+                                07969DB817D14151007FF842 /* JSRTCPeerConnectionIceEvent.h in Headers */,
</ins><span class="cx">                                 073794EC19EE341E00E5A045 /* JSRTCIceServer.h in Headers */,
</span><span class="cx">                                 07969DBA17D14151007FF842 /* JSRTCPeerConnection.h in Headers */,
</span><span class="cx">                                 5E2C43721BCF0D750001E2BC /* JSRTCRtpReceiver.h in Headers */,
</span><span class="lines">@@ -28883,7 +28883,7 @@
</span><span class="cx">                                 078E092117D14D1C00420AA1 /* RTCDTMFToneChangeEvent.h in Headers */,
</span><span class="cx">                                 078E092317D14D1C00420AA1 /* RTCIceCandidate.h in Headers */,
</span><span class="cx">                                 078E094017D16E1C00420AA1 /* RTCIceCandidateDescriptor.h in Headers */,
</span><del>-                                078E092417D14D1C00420AA1 /* RTCIceCandidateEvent.h in Headers */,
</del><ins>+                                078E092417D14D1C00420AA1 /* RTCPeerConnectionIceEvent.h in Headers */,
</ins><span class="cx">                                 07AB996B18DA3C010018771E /* RTCIceServer.h in Headers */,
</span><span class="cx">                                 073794FE19F5864E00E5A045 /* RTCNotifiersMock.h in Headers */,
</span><span class="cx">                                 073794DE19EE2C5200E5A045 /* RTCOfferAnswerOptions.h in Headers */,
</span><span class="lines">@@ -31798,7 +31798,7 @@
</span><span class="cx">                                 07969DAF17D14151007FF842 /* JSRTCDTMFSender.cpp in Sources */,
</span><span class="cx">                                 07969DB117D14151007FF842 /* JSRTCDTMFToneChangeEvent.cpp in Sources */,
</span><span class="cx">                                 07969DB517D14151007FF842 /* JSRTCIceCandidate.cpp in Sources */,
</span><del>-                                07969DB717D14151007FF842 /* JSRTCIceCandidateEvent.cpp in Sources */,
</del><ins>+                                07969DB717D14151007FF842 /* JSRTCPeerConnectionIceEvent.cpp in Sources */,
</ins><span class="cx">                                 073794EB19EE341E00E5A045 /* JSRTCIceServer.cpp in Sources */,
</span><span class="cx">                                 07969DB917D14151007FF842 /* JSRTCPeerConnection.cpp in Sources */,
</span><span class="cx">                                 5E2C43711BCF0D750001E2BC /* JSRTCRtpReceiver.cpp in Sources */,
</span><span class="lines">@@ -32718,7 +32718,7 @@
</span><span class="cx">                                 078E090817D14CEE00420AA1 /* RTCDTMFToneChangeEvent.cpp in Sources */,
</span><span class="cx">                                 078E090917D14CEE00420AA1 /* RTCIceCandidate.cpp in Sources */,
</span><span class="cx">                                 073BE34F17D18183002BD431 /* RTCIceCandidateDescriptor.cpp in Sources */,
</span><del>-                                078E090A17D14CEE00420AA1 /* RTCIceCandidateEvent.cpp in Sources */,
</del><ins>+                                078E090A17D14CEE00420AA1 /* RTCPeerConnectionIceEvent.cpp in Sources */,
</ins><span class="cx">                                 073794FD19F5864E00E5A045 /* RTCNotifiersMock.cpp in Sources */,
</span><span class="cx">                                 078E090B17D14CEE00420AA1 /* RTCPeerConnection.cpp in Sources */,
</span><span class="cx">                                 5E2C43621BCEE32B0001E2BC /* RTCRtpReceiver.cpp in Sources */,
</span></span></pre></div>
<a id="trunkSourceWebCoredomEventNamesin"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/dom/EventNames.in (214329 => 214330)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/dom/EventNames.in        2017-03-24 01:36:06 UTC (rev 214329)
+++ trunk/Source/WebCore/dom/EventNames.in        2017-03-24 01:40:50 UTC (rev 214330)
</span><span class="lines">@@ -43,7 +43,7 @@
</span><span class="cx"> OfflineAudioCompletionEvent conditional=WEB_AUDIO
</span><span class="cx"> MediaStreamEvent conditional=WEB_RTC
</span><span class="cx"> MediaStreamTrackEvent conditional=MEDIA_STREAM
</span><del>-RTCIceCandidateEvent conditional=WEB_RTC
</del><ins>+RTCPeerConnectionIceEvent conditional=WEB_RTC
</ins><span class="cx"> RTCDataChannelEvent conditional=WEB_RTC
</span><span class="cx"> RTCDTMFToneChangeEvent conditional=WEB_RTC
</span><span class="cx"> RTCTrackEvent conditional=WEB_RTC
</span></span></pre>
</div>
</div>

</body>
</html>