<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - CurrentTime on mediaController is set as 0 when playback is completed."
   href="https://bugs.webkit.org/show_bug.cgi?id=149154#c9">Comment # 9</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - CurrentTime on mediaController is set as 0 when playback is completed."
   href="https://bugs.webkit.org/show_bug.cgi?id=149154">bug 149154</a>
              from <span class="vcard"><a class="email" href="mailto:eric.carlson&#64;apple.com" title="Eric Carlson &lt;eric.carlson&#64;apple.com&gt;"> <span class="fn">Eric Carlson</span></a>
</span></b>
        <pre>Comment on <span class=""><a href="attachment.cgi?id=261294&amp;action=diff" name="attach_261294" title="Patch">attachment 261294</a> <a href="attachment.cgi?id=261294&amp;action=edit" title="Patch">[details]</a></span>
Patch

View in context: <a href="https://bugs.webkit.org/attachment.cgi?id=261294&amp;action=review">https://bugs.webkit.org/attachment.cgi?id=261294&amp;action=review</a>

<span class="quote">&gt;&gt;&gt; Source/WebCore/html/MediaController.cpp:458
&gt;&gt;&gt;          break;
&gt;&gt; 
&gt;&gt; Instead of adding a new instance variable to track state, can you just set current time to 0 when playback state changes from ENDED to PLAYING?
&gt;&gt; 
&gt;&gt;     case PLAYING:
&gt;&gt;         if (oldReadyState == ENDED)
&gt;&gt;             m_clock-&gt;setCurrentTime(0);
&gt;&gt;         eventName = eventNames().playingEvent;
&gt;&gt;         m_clock-&gt;start();
&gt;&gt;         startTimeupdateTimer();
&gt;&gt;         break;
&gt; 
&gt; I tried to using oldPlaybackState but during my test, sometimes I observed that the WAITING event is comming between ENDED and PLAYING. 
&gt; 
&gt; e.g) 
&gt; ENDED -&gt; PLAYING
&gt; ENDED -&gt; WAITING -&gt; PLAYING
&gt; 
&gt; To cover both case, I added a new variable to track state.</span >

OK. In any case, you should handle this in the switch statement:

    case PLAYING:
        if (m_resetCurrentTimeInNextPlay)
            m_clock-&gt;setCurrentTime(0);
        m_resetCurrentTimeInNextPlay = false;
        eventName = eventNames().playingEvent;
        m_clock-&gt;start();
        startTimeupdateTimer();
        break;

<span class="quote">&gt;&gt;&gt; Source/WebCore/html/MediaController.h:157
&gt;&gt;&gt; +    bool m_resetCurrentTimeInNextPlay;
&gt;&gt; 
&gt;&gt; For new code, we should initialize in the header:
&gt;&gt; 
&gt;&gt;     bool m_resetCurrentTimeInNextPlay { false };
&gt; 
&gt; It's initialized in constructor, do I need initialize in head also?</span >

For new code, the WebKit style is initialize in the header instead of in the constructor.</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>