<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_RESOLVED  bz_closed"
   title="RESOLVED FIXED - Support releasing media sessions"
   href="https://bugs.webkit.org/show_bug.cgi?id=146132#c5">Comment # 5</a>
              on <a class="bz_bug_link 
          bz_status_RESOLVED  bz_closed"
   title="RESOLVED FIXED - Support releasing media sessions"
   href="https://bugs.webkit.org/show_bug.cgi?id=146132">bug 146132</a>
              from <span class="vcard"><a class="email" href="mailto:mrajca&#64;apple.com" title="Matt Rajca &lt;mrajca&#64;apple.com&gt;"> <span class="fn">Matt Rajca</span></a>
</span></b>
        <pre>(In reply to <a href="show_bug.cgi?id=146132#c2">comment #2</a>)
<span class="quote">&gt; Comment on <span class=""><a href="attachment.cgi?id=255155&amp;action=diff" name="attach_255155" title="Patch">attachment 255155</a> <a href="attachment.cgi?id=255155&amp;action=edit" title="Patch">[details]</a></span>
&gt; Patch
&gt; 
&gt; View in context:
&gt; <a href="https://bugs.webkit.org/attachment.cgi?id=255155&amp;action=review">https://bugs.webkit.org/attachment.cgi?id=255155&amp;action=review</a>
&gt; 
&gt; &gt; Source/WebCore/Modules/mediasession/MediaSession.cpp:84
&gt; &gt; +    while (!m_activeParticipatingElements.isEmpty()) {
&gt; &gt; +        HTMLMediaElement* element = m_activeParticipatingElements.takeAny();
&gt; &gt; +        element-&gt;pause();
&gt; &gt; +    }
&gt; 
&gt; Could write this without the local variable:
&gt; 
&gt;     while (!m_activeParticipatingElements.isEmpty())
&gt;         m_activeParticipatingElements.takeAny()-&gt;pause();
&gt; 
&gt; &gt; Source/WebCore/Modules/mediasession/MediaSession.cpp:98
&gt; &gt; +    if (m_activeParticipatingElements.size() &gt;= 1)
&gt; 
&gt; I think !isEmpty() would be better. Sometimes it’s better not to take
&gt; specification language too literally! One or more doesn’t have to turn into
&gt; &gt;= 1.</span >

Thanks for the feedback. Fixed.</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>