<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Add support for 'Default' media session types"
   href="https://bugs.webkit.org/show_bug.cgi?id=146355#c4">Comment # 4</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Add support for 'Default' media session types"
   href="https://bugs.webkit.org/show_bug.cgi?id=146355">bug 146355</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=146355#c3">comment #3</a>)
<span class="quote">&gt; Comment on <span class=""><a href="attachment.cgi?id=255676&amp;action=diff" name="attach_255676" title="Patch">attachment 255676</a> <a href="attachment.cgi?id=255676&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=255676&amp;action=review">https://bugs.webkit.org/attachment.cgi?id=255676&amp;action=review</a>
&gt; 
&gt; &gt; Source/WebCore/Modules/mediasession/MediaSession.cpp:62
&gt; &gt; +    , m_kind(MediaSession::Kind::Default)
&gt; 
&gt; Here in the MediaSession class, the name of this type is Kind, not
&gt; MediaSession::Kind, so can leave off the MediaSession part.
&gt; 
&gt; Seems that m_kind could default to this in the header, then we could omit it
&gt; in this constructor. Syntax we would normally use in the class definition is:
&gt; 
&gt;     Kind m_kind { Kind::Default };</span >

That's simpler. Changed.

<span class="quote">&gt; 
&gt; &gt; Source/WebCore/Modules/mediasession/MediaSession.h:53
&gt; &gt; +    MediaSession(Document&amp;);
&gt; 
&gt; Probably should be:
&gt; 
&gt;     explicit MediaSession(Document&amp;);</span >

Yup, looks like we use `explicit` heavily throughout WebKit to avoid implicit conversions with single-argument constructors.

Thanks!</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>