Changeset 200039 in webkit
- Timestamp:
- Apr 25, 2016, 12:37:17 PM (9 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r200037 r200039 1 2016-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 1 19 2016-04-25 Chris Dumez <cdumez@apple.com> 2 20 -
trunk/Source/WebCore/html/HTMLMediaElement.cpp
r199964 r200039 1139 1139 void HTMLMediaElement::loadInternal() 1140 1140 { 1141 LOG(Media, "HTMLMediaElement::loadInternal(%p)", this); 1142 1141 1143 // Some of the code paths below this function dispatch the BeforeLoad event. This ASSERT helps 1142 1144 // us catch those bugs more quickly without needing all the branches to align to actually … … 1146 1148 // If we can't start a load right away, start it later. 1147 1149 if (!m_mediaSession->pageAllowsDataLoading(*this)) { 1150 LOG(Media, "HTMLMediaElement::loadInternal(%p) - not allowed to load in background, waiting", this); 1148 1151 setShouldDelayLoadEvent(false); 1149 1152 if (m_isWaitingUntilMediaCanStart) 1150 1153 return; 1154 m_isWaitingUntilMediaCanStart = true; 1151 1155 document().addMediaCanStartListener(this); 1152 m_isWaitingUntilMediaCanStart = true;1153 1156 return; 1154 1157 } … … 1185 1188 { 1186 1189 LOG(Media, "HTMLMediaElement::selectMediaResource(%p)", this); 1190 1191 ASSERT(m_player); 1192 if (!m_player) 1193 return; 1187 1194 1188 1195 enum Mode { attribute, children }; … … 4995 5002 #endif 4996 5003 5004 if (m_isWaitingUntilMediaCanStart) { 5005 m_isWaitingUntilMediaCanStart = false; 5006 document().removeMediaCanStartListener(this); 5007 } 5008 4997 5009 m_player = nullptr; 4998 5010 … … 5140 5152 void HTMLMediaElement::visibilityStateChanged() 5141 5153 { 5142 LOG(Media, "HTMLMediaElement::visibilityStateChanged(%p)", this);5143 5154 m_elementIsHidden = document().hidden(); 5155 LOG(Media, "HTMLMediaElement::visibilityStateChanged(%p) - visible = %s", this, boolString(!m_elementIsHidden)); 5144 5156 updateSleepDisabling(); 5145 5157 m_mediaSession->visibilityChanged(); … … 5585 5597 void HTMLMediaElement::mediaCanStart() 5586 5598 { 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) ); 5588 5601 5589 5602 ASSERT(m_isWaitingUntilMediaCanStart || m_pausedInternal);
Note:
See TracChangeset
for help on using the changeset viewer.