<!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>[185069] 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/185069">185069</a></dd>
<dt>Author</dt> <dd>commit-queue@webkit.org</dd>
<dt>Date</dt> <dd>2015-06-01 12:05:44 -0700 (Mon, 01 Jun 2015)</dd>
</dl>

<h3>Log Message</h3>
<pre>Add stub implementation of MediaRemoteControls, part of the Media Session spec.
https://bugs.webkit.org/show_bug.cgi?id=145462

Patch by Matt Rajca &lt;mrajca@apple.com&gt; on 2015-06-01
Reviewed by Eric Carlson.

* CMakeLists.txt: Added IDL file as well as the corresponding implementation file.
* DerivedSources.make: Included the new IDL file.
* Modules/mediasession/MediaRemoteControls.cpp: Added an empty implementation file.
(MediaRemoteControls::~MediaRemoteControls):
* Modules/mediasession/MediaRemoteControls.h: Added a stubbed header file with accessors for the four attributes declared in the IDL file.
(WebCore::MediaRemoteControls::previousTrackEnabled):
(WebCore::MediaRemoteControls::setPreviousTrackEnabled):
(WebCore::MediaRemoteControls::nextTrackEnabled):
(WebCore::MediaRemoteControls::setNextTrackEnabled):
(WebCore::MediaRemoteControls::seekForwardEnabled):
(WebCore::MediaRemoteControls::setSeekForwardEnabled):
(WebCore::MediaRemoteControls::seekBackwardEnabled):
(WebCore::MediaRemoteControls::setSeekBackwardEnabled):
* Modules/mediasession/MediaRemoteControls.idl: Added from the Media Session spec.
* WebCore.xcodeproj/project.pbxproj: Included the new IDL file and MediaRemoteControls.cpp/.h sources.</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="#trunkSourceWebCoreDerivedSourcesmake">trunk/Source/WebCore/DerivedSources.make</a></li>
<li><a href="#trunkSourceWebCoreWebCorexcodeprojprojectpbxproj">trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj</a></li>
</ul>

<h3>Added Paths</h3>
<ul>
<li><a href="#trunkSourceWebCoreModulesmediasessionMediaRemoteControlscpp">trunk/Source/WebCore/Modules/mediasession/MediaRemoteControls.cpp</a></li>
<li><a href="#trunkSourceWebCoreModulesmediasessionMediaRemoteControlsh">trunk/Source/WebCore/Modules/mediasession/MediaRemoteControls.h</a></li>
<li><a href="#trunkSourceWebCoreModulesmediasessionMediaRemoteControlsidl">trunk/Source/WebCore/Modules/mediasession/MediaRemoteControls.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 (185068 => 185069)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/CMakeLists.txt        2015-06-01 18:40:57 UTC (rev 185068)
+++ trunk/Source/WebCore/CMakeLists.txt        2015-06-01 19:05:44 UTC (rev 185069)
</span><span class="lines">@@ -144,6 +144,7 @@
</span><span class="cx">     Modules/geolocation
</span><span class="cx">     Modules/indexeddb
</span><span class="cx">     Modules/indieui
</span><ins>+    Modules/mediasession
</ins><span class="cx">     Modules/mediastream
</span><span class="cx">     Modules/notifications
</span><span class="cx">     Modules/proximity
</span><span class="lines">@@ -217,6 +218,8 @@
</span><span class="cx"> 
</span><span class="cx">     Modules/mediacontrols/MediaControlsHost.idl
</span><span class="cx"> 
</span><ins>+    Modules/mediasession/MediaRemoteControls.idl
+
</ins><span class="cx">     Modules/mediasource/DOMURLMediaSource.idl
</span><span class="cx">     Modules/mediasource/MediaSource.idl
</span><span class="cx">     Modules/mediasource/SourceBuffer.idl
</span><span class="lines">@@ -870,6 +873,8 @@
</span><span class="cx"> 
</span><span class="cx">     Modules/mediacontrols/MediaControlsHost.cpp
</span><span class="cx"> 
</span><ins>+    Modules/mediasession/MediaRemoteControls.cpp
+
</ins><span class="cx">     Modules/mediasource/DOMURLMediaSource.cpp
</span><span class="cx">     Modules/mediasource/MediaSource.cpp
</span><span class="cx">     Modules/mediasource/MediaSourceRegistry.cpp
</span></span></pre></div>
<a id="trunkSourceWebCoreChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/ChangeLog (185068 => 185069)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/ChangeLog        2015-06-01 18:40:57 UTC (rev 185068)
+++ trunk/Source/WebCore/ChangeLog        2015-06-01 19:05:44 UTC (rev 185069)
</span><span class="lines">@@ -1,3 +1,26 @@
</span><ins>+2015-06-01  Matt Rajca  &lt;mrajca@apple.com&gt;
+
+        Add stub implementation of MediaRemoteControls, part of the Media Session spec.
+        https://bugs.webkit.org/show_bug.cgi?id=145462
+
+        Reviewed by Eric Carlson.
+
+        * CMakeLists.txt: Added IDL file as well as the corresponding implementation file.
+        * DerivedSources.make: Included the new IDL file.
+        * Modules/mediasession/MediaRemoteControls.cpp: Added an empty implementation file.
+        (MediaRemoteControls::~MediaRemoteControls):
+        * Modules/mediasession/MediaRemoteControls.h: Added a stubbed header file with accessors for the four attributes declared in the IDL file.
+        (WebCore::MediaRemoteControls::previousTrackEnabled):
+        (WebCore::MediaRemoteControls::setPreviousTrackEnabled):
+        (WebCore::MediaRemoteControls::nextTrackEnabled):
+        (WebCore::MediaRemoteControls::setNextTrackEnabled):
+        (WebCore::MediaRemoteControls::seekForwardEnabled):
+        (WebCore::MediaRemoteControls::setSeekForwardEnabled):
+        (WebCore::MediaRemoteControls::seekBackwardEnabled):
+        (WebCore::MediaRemoteControls::setSeekBackwardEnabled):
+        * Modules/mediasession/MediaRemoteControls.idl: Added from the Media Session spec.
+        * WebCore.xcodeproj/project.pbxproj: Included the new IDL file and MediaRemoteControls.cpp/.h sources.
+
</ins><span class="cx"> 2015-06-01  Sergio Villar Senin  &lt;svillar@igalia.com&gt;
</span><span class="cx"> 
</span><span class="cx">         [CSS Grid Layout] Simplify the interface of GridResolvedPosition
</span></span></pre></div>
<a id="trunkSourceWebCoreDerivedSourcesmake"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/DerivedSources.make (185068 => 185069)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/DerivedSources.make        2015-06-01 18:40:57 UTC (rev 185068)
+++ trunk/Source/WebCore/DerivedSources.make        2015-06-01 19:05:44 UTC (rev 185069)
</span><span class="lines">@@ -35,6 +35,7 @@
</span><span class="cx">     $(WebCore)/Modules/indexeddb \
</span><span class="cx">     $(WebCore)/Modules/indieui \
</span><span class="cx">     $(WebCore)/Modules/mediacontrols \
</span><ins>+    $(WebCore)/Modules/mediasession \
</ins><span class="cx">     $(WebCore)/Modules/mediasource \
</span><span class="cx">     $(WebCore)/Modules/mediastream \
</span><span class="cx">     $(WebCore)/Modules/notifications \
</span><span class="lines">@@ -103,6 +104,7 @@
</span><span class="cx">     $(WebCore)/Modules/indexeddb/WorkerGlobalScopeIndexedDatabase.idl \
</span><span class="cx">     $(WebCore)/Modules/indieui/UIRequestEvent.idl \
</span><span class="cx">     $(WebCore)/Modules/mediacontrols/MediaControlsHost.idl \
</span><ins>+    $(WebCore)/Modules/mediasession/MediaRemoteControls.idl \
</ins><span class="cx">         $(WebCore)/Modules/mediasource/DOMURLMediaSource.idl \
</span><span class="cx">         $(WebCore)/Modules/mediasource/AudioTrackMediaSource.idl \
</span><span class="cx">         $(WebCore)/Modules/mediasource/MediaSource.idl \
</span></span></pre></div>
<a id="trunkSourceWebCoreModulesmediasessionMediaRemoteControlscpp"></a>
<div class="addfile"><h4>Added: trunk/Source/WebCore/Modules/mediasession/MediaRemoteControls.cpp (0 => 185069)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/Modules/mediasession/MediaRemoteControls.cpp                                (rev 0)
+++ trunk/Source/WebCore/Modules/mediasession/MediaRemoteControls.cpp        2015-06-01 19:05:44 UTC (rev 185069)
</span><span class="lines">@@ -0,0 +1,40 @@
</span><ins>+/*
+ * Copyright (C) 2015 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. ``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
+ * 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;MediaRemoteControls.h&quot;
+
+#if ENABLE(MEDIA_SESSION)
+
+namespace WebCore {
+
+MediaRemoteControls::~MediaRemoteControls()
+{
+    
+}
+
+}
+
+#endif /* ENABLE(MEDIA_SESSION) */
</ins></span></pre></div>
<a id="trunkSourceWebCoreModulesmediasessionMediaRemoteControlsh"></a>
<div class="addfile"><h4>Added: trunk/Source/WebCore/Modules/mediasession/MediaRemoteControls.h (0 => 185069)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/Modules/mediasession/MediaRemoteControls.h                                (rev 0)
+++ trunk/Source/WebCore/Modules/mediasession/MediaRemoteControls.h        2015-06-01 19:05:44 UTC (rev 185069)
</span><span class="lines">@@ -0,0 +1,72 @@
</span><ins>+/*
+ * Copyright (C) 2015 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. ``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
+ * 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.
+ */
+
+#ifndef MediaRemoteControls_h
+#define MediaRemoteControls_h
+
+#if ENABLE(MEDIA_SESSION)
+
+#include &quot;EventTarget.h&quot;
+#include &lt;wtf/RefCounted.h&gt;
+
+namespace WebCore {
+
+class MediaRemoteControls : public RefCounted&lt;MediaRemoteControls&gt;, public EventTargetWithInlineData {
+public:
+    bool previousTrackEnabled() const { return m_previousTrackEnabled; }
+    void setPreviousTrackEnabled(bool enabled) { m_previousTrackEnabled = enabled; }
+
+    bool nextTrackEnabled() const { return m_nextTrackEnabled; }
+    void setNextTrackEnabled(bool enabled) { m_nextTrackEnabled = enabled; }
+
+    bool seekForwardEnabled() const { return m_seekForwardEnabled; }
+    void setSeekForwardEnabled(bool enabled) { m_seekForwardEnabled = enabled; }
+
+    bool seekBackwardEnabled() const { return m_seekBackwardEnabled; }
+    void setSeekBackwardEnabled(bool enabled) { m_seekBackwardEnabled = enabled; }
+
+    using RefCounted&lt;MediaRemoteControls&gt;::ref;
+    using RefCounted&lt;MediaRemoteControls&gt;::deref;
+
+    virtual ~MediaRemoteControls();
+
+protected:
+    MediaRemoteControls() = default;
+
+private:
+    bool m_previousTrackEnabled;
+    bool m_nextTrackEnabled;
+    bool m_seekForwardEnabled;
+    bool m_seekBackwardEnabled;
+
+    virtual void refEventTarget() override final { ref(); }
+    virtual void derefEventTarget() override final { deref(); }
+};
+
+} // namespace WebCore
+
+#endif /* ENABLE(MEDIA_SESSION) */
+
+#endif /* MediaRemoteControls_h */
</ins></span></pre></div>
<a id="trunkSourceWebCoreModulesmediasessionMediaRemoteControlsidl"></a>
<div class="addfile"><h4>Added: trunk/Source/WebCore/Modules/mediasession/MediaRemoteControls.idl (0 => 185069)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/Modules/mediasession/MediaRemoteControls.idl                                (rev 0)
+++ trunk/Source/WebCore/Modules/mediasession/MediaRemoteControls.idl        2015-06-01 19:05:44 UTC (rev 185069)
</span><span class="lines">@@ -0,0 +1,39 @@
</span><ins>+/*
+ * Copyright (C) 2015 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. ``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
+ * 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. 
+ */
+
+[
+    Conditional=MEDIA_SESSION,
+    EventTarget,
+] interface MediaRemoteControls : EventTarget {
+    attribute boolean previousTrackEnabled;
+    attribute boolean nextTrackEnabled;
+    attribute boolean seekForwardEnabled;
+    attribute boolean seekBackwardEnabled;
+
+    attribute EventHandler onprevioustrack;
+    attribute EventHandler onnexttrack;
+    attribute EventHandler onseekforward;
+    attribute EventHandler onseekbackward;
+};
</ins></span></pre></div>
<a id="trunkSourceWebCoreWebCorexcodeprojprojectpbxproj"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj (185068 => 185069)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj        2015-06-01 18:40:57 UTC (rev 185068)
+++ trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj        2015-06-01 19:05:44 UTC (rev 185069)
</span><span class="lines">@@ -5684,6 +5684,8 @@
</span><span class="cx">                 C6F0917F143A2BB900685849 /* JSMutationObserverCustom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C6F0917E143A2BB900685849 /* JSMutationObserverCustom.cpp */; };
</span><span class="cx">                 C6F420A216B7164E0052A9F2 /* JSMutationCallback.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C6F420A016B7164E0052A9F2 /* JSMutationCallback.cpp */; };
</span><span class="cx">                 C6F420A316B7164E0052A9F2 /* JSMutationCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = C6F420A116B7164E0052A9F2 /* JSMutationCallback.h */; };
</span><ins>+                C90843CF1B18E47D00B68564 /* MediaRemoteControls.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C90843CD1B18E47D00B68564 /* MediaRemoteControls.cpp */; };
+                C90843D01B18E47D00B68564 /* MediaRemoteControls.h in Headers */ = {isa = PBXBuildFile; fileRef = C90843CE1B18E47D00B68564 /* MediaRemoteControls.h */; };
</ins><span class="cx">                 CA3BF67C10D99BAE00E6CE53 /* ScrollAnimator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CA3BF67B10D99BAE00E6CE53 /* ScrollAnimator.cpp */; };
</span><span class="cx">                 CA3BF67E10D99BAE00E6CE53 /* ScrollAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = CA3BF67D10D99BAE00E6CE53 /* ScrollAnimator.h */; settings = {ATTRIBUTES = (Private, ); }; };
</span><span class="cx">                 CAE9F90F146441F000C245B0 /* CSSAspectRatioValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CAE9F90D146441F000C245B0 /* CSSAspectRatioValue.cpp */; };
</span><span class="lines">@@ -13235,6 +13237,9 @@
</span><span class="cx">                 C6F0917E143A2BB900685849 /* JSMutationObserverCustom.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSMutationObserverCustom.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 C6F420A016B7164E0052A9F2 /* JSMutationCallback.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSMutationCallback.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 C6F420A116B7164E0052A9F2 /* JSMutationCallback.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSMutationCallback.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><ins>+                C90843CD1B18E47D00B68564 /* MediaRemoteControls.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MediaRemoteControls.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
+                C90843CE1B18E47D00B68564 /* MediaRemoteControls.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MediaRemoteControls.h; sourceTree = &quot;&lt;group&gt;&quot;; };
+                C93458BB1B18D77E0088EE12 /* MediaRemoteControls.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = MediaRemoteControls.idl; sourceTree = &quot;&lt;group&gt;&quot;; };
</ins><span class="cx">                 CA3BF67B10D99BAE00E6CE53 /* ScrollAnimator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ScrollAnimator.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 CA3BF67D10D99BAE00E6CE53 /* ScrollAnimator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ScrollAnimator.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 CAE9F90D146441F000C245B0 /* CSSAspectRatioValue.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CSSAspectRatioValue.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="lines">@@ -14578,6 +14583,9 @@
</span><span class="cx">                 0709D78B1AE5552E004E42F8 /* mediasession */ = {
</span><span class="cx">                         isa = PBXGroup;
</span><span class="cx">                         children = (
</span><ins>+                                C90843CD1B18E47D00B68564 /* MediaRemoteControls.cpp */,
+                                C90843CE1B18E47D00B68564 /* MediaRemoteControls.h */,
+                                C93458BB1B18D77E0088EE12 /* MediaRemoteControls.idl */,
</ins><span class="cx">                                 0709D78C1AE55554004E42F8 /* WebMediaSessionManager.cpp */,
</span><span class="cx">                                 0709D78D1AE55554004E42F8 /* WebMediaSessionManager.h */,
</span><span class="cx">                                 0709D7941AE55A29004E42F8 /* WebMediaSessionManagerClient.h */,
</span><span class="lines">@@ -25794,6 +25802,7 @@
</span><span class="cx">                                 D3A94A39122DABAC00A37BBC /* MediaQueryList.h in Headers */,
</span><span class="cx">                                 D3A94A3B122DABAC00A37BBC /* MediaQueryListListener.h in Headers */,
</span><span class="cx">                                 D3AA10F4123A98AA0092152B /* MediaQueryMatcher.h in Headers */,
</span><ins>+                                C90843D01B18E47D00B68564 /* MediaRemoteControls.h in Headers */,
</ins><span class="cx">                                 CEEFCD7A19DB31F7003876D7 /* MediaResourceLoader.h in Headers */,
</span><span class="cx">                                 CDBEAEAD19D92B6C00BEBA88 /* MediaSelectionGroupAVFObjC.h in Headers */,
</span><span class="cx">                                 07F944161864D046005D31CB /* MediaSessionManager.h in Headers */,
</span><span class="lines">@@ -29372,6 +29381,7 @@
</span><span class="cx">                                 4E19592D0A39DACC00220FE5 /* MediaQueryExp.cpp in Sources */,
</span><span class="cx">                                 D3A94A38122DABAC00A37BBC /* MediaQueryList.cpp in Sources */,
</span><span class="cx">                                 D3AA10F3123A98AA0092152B /* MediaQueryMatcher.cpp in Sources */,
</span><ins>+                                C90843CF1B18E47D00B68564 /* MediaRemoteControls.cpp in Sources */,
</ins><span class="cx">                                 CEEFCD7919DB31F7003876D7 /* MediaResourceLoader.cpp in Sources */,
</span><span class="cx">                                 CDBEAEAC19D92B6C00BEBA88 /* MediaSelectionGroupAVFObjC.mm in Sources */,
</span><span class="cx">                                 CDAE8C091746B95700532D78 /* MediaSessionManager.cpp in Sources */,
</span></span></pre>
</div>
</div>

</body>
</html>