Changeset 200039 in webkit


Ignore:
Timestamp:
Apr 25, 2016, 12:37:17 PM (9 years ago)
Author:
eric.carlson@apple.com
Message:

Stop listening for "media can start" notifications when media player is cleared
https://bugs.webkit.org/show_bug.cgi?id=156985
<rdar://problem/23158505>

Reviewed by Jer Noble.

No new tests, I have not been able to create a test that reliably reproduces this.

  • html/HTMLMediaElement.cpp:

(WebCore::HTMLMediaElement::loadInternal): Add logging.
(WebCore::HTMLMediaElement::selectMediaResource): Assert and return early if there is

no media player.

(WebCore::HTMLMediaElement::clearMediaPlayer): Stop listening for can start notifications.
(WebCore::HTMLMediaElement::visibilityStateChanged): Add logging.
(WebCore::HTMLMediaElement::mediaCanStart): Ditto.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r200037 r200039  
     12016-04-25  Eric Carlson  <eric.carlson@apple.com>
     2
     3        Stop listening for "media can start" notifications when media player is cleared
     4        https://bugs.webkit.org/show_bug.cgi?id=156985
     5        <rdar://problem/23158505>
     6
     7        Reviewed by Jer Noble.
     8
     9        No new tests, I have not been able to create a test that reliably reproduces this.
     10
     11        * html/HTMLMediaElement.cpp:
     12        (WebCore::HTMLMediaElement::loadInternal): Add logging.
     13        (WebCore::HTMLMediaElement::selectMediaResource): Assert and return early if there is
     14          no media player.
     15        (WebCore::HTMLMediaElement::clearMediaPlayer): Stop listening for can start notifications.
     16        (WebCore::HTMLMediaElement::visibilityStateChanged): Add logging.
     17        (WebCore::HTMLMediaElement::mediaCanStart): Ditto.
     18
    1192016-04-25  Chris Dumez  <cdumez@apple.com>
    220
  • trunk/Source/WebCore/html/HTMLMediaElement.cpp

    r199964 r200039  
    11391139void HTMLMediaElement::loadInternal()
    11401140{
     1141    LOG(Media, "HTMLMediaElement::loadInternal(%p)", this);
     1142
    11411143    // Some of the code paths below this function dispatch the BeforeLoad event. This ASSERT helps
    11421144    // us catch those bugs more quickly without needing all the branches to align to actually
     
    11461148    // If we can't start a load right away, start it later.
    11471149    if (!m_mediaSession->pageAllowsDataLoading(*this)) {
     1150        LOG(Media, "HTMLMediaElement::loadInternal(%p) - not allowed to load in background, waiting", this);
    11481151        setShouldDelayLoadEvent(false);
    11491152        if (m_isWaitingUntilMediaCanStart)
    11501153            return;
     1154        m_isWaitingUntilMediaCanStart = true;
    11511155        document().addMediaCanStartListener(this);
    1152         m_isWaitingUntilMediaCanStart = true;
    11531156        return;
    11541157    }
     
    11851188{
    11861189    LOG(Media, "HTMLMediaElement::selectMediaResource(%p)", this);
     1190
     1191    ASSERT(m_player);
     1192    if (!m_player)
     1193        return;
    11871194
    11881195    enum Mode { attribute, children };
     
    49955002#endif
    49965003
     5004    if (m_isWaitingUntilMediaCanStart) {
     5005        m_isWaitingUntilMediaCanStart = false;
     5006        document().removeMediaCanStartListener(this);
     5007    }
     5008
    49975009    m_player = nullptr;
    49985010
     
    51405152void HTMLMediaElement::visibilityStateChanged()
    51415153{
    5142     LOG(Media, "HTMLMediaElement::visibilityStateChanged(%p)", this);
    51435154    m_elementIsHidden = document().hidden();
     5155    LOG(Media, "HTMLMediaElement::visibilityStateChanged(%p) - visible = %s", this, boolString(!m_elementIsHidden));
    51445156    updateSleepDisabling();
    51455157    m_mediaSession->visibilityChanged();
     
    55855597void HTMLMediaElement::mediaCanStart()
    55865598{
    5587     LOG(Media, "HTMLMediaElement::mediaCanStart(%p)", this);
     5599    LOG(Media, "HTMLMediaElement::mediaCanStart(%p) - m_isWaitingUntilMediaCanStart = %s, m_pausedInternal = %s",
     5600        this, boolString(m_isWaitingUntilMediaCanStart), boolString(m_pausedInternal) );
    55885601
    55895602    ASSERT(m_isWaitingUntilMediaCanStart || m_pausedInternal);
Note: See TracChangeset for help on using the changeset viewer.