OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights
reserved. | 2 * Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights
reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 1620 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1631 // If the autoplay experiment says that it's okay to play now, | 1631 // If the autoplay experiment says that it's okay to play now, |
1632 // then don't require a user gesture. | 1632 // then don't require a user gesture. |
1633 m_autoplayHelper->becameReadyToPlay(); | 1633 m_autoplayHelper->becameReadyToPlay(); |
1634 | 1634 |
1635 if (!isGestureNeededForPlayback()) { | 1635 if (!isGestureNeededForPlayback()) { |
1636 if (isHTMLVideoElement() && muted() && RuntimeEnabledFeatures::a
utoplayMutedVideosEnabled()) { | 1636 if (isHTMLVideoElement() && muted() && RuntimeEnabledFeatures::a
utoplayMutedVideosEnabled()) { |
1637 // We might end up in a situation where the previous | 1637 // We might end up in a situation where the previous |
1638 // observer didn't had time to fire yet. We can avoid | 1638 // observer didn't had time to fire yet. We can avoid |
1639 // creating a new one in this case. | 1639 // creating a new one in this case. |
1640 if (!m_autoplayVisibilityObserver) { | 1640 if (!m_autoplayVisibilityObserver) { |
1641 m_autoplayVisibilityObserver = new ElementVisibilityObse
rver(this, WTF::bind(&HTMLMediaElement::onVisibilityChangedForAutoplay, wrapPers
istent(this))); | 1641 m_autoplayVisibilityObserver = new ElementVisibilityObse
rver(this, WTF::bind(&HTMLMediaElement::onVisibilityChangedForAutoplay, wrapWeak
Persistent(this))); |
1642 m_autoplayVisibilityObserver->start(); | 1642 m_autoplayVisibilityObserver->start(); |
1643 } | 1643 } |
1644 } else { | 1644 } else { |
1645 m_paused = false; | 1645 m_paused = false; |
1646 invalidateCachedTime(); | 1646 invalidateCachedTime(); |
1647 scheduleEvent(EventTypeNames::play); | 1647 scheduleEvent(EventTypeNames::play); |
1648 scheduleNotifyPlaying(); | 1648 scheduleNotifyPlaying(); |
1649 m_autoplaying = false; | 1649 m_autoplaying = false; |
1650 } | 1650 } |
1651 } | 1651 } |
(...skipping 2264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3916 if (shouldAutoplay()) { | 3916 if (shouldAutoplay()) { |
3917 m_paused = false; | 3917 m_paused = false; |
3918 invalidateCachedTime(); | 3918 invalidateCachedTime(); |
3919 scheduleEvent(EventTypeNames::play); | 3919 scheduleEvent(EventTypeNames::play); |
3920 scheduleNotifyPlaying(); | 3920 scheduleNotifyPlaying(); |
3921 m_autoplaying = false; | 3921 m_autoplaying = false; |
3922 | 3922 |
3923 updatePlayState(); | 3923 updatePlayState(); |
3924 } | 3924 } |
3925 | 3925 |
| 3926 // TODO(zqzhang): There's still flaky leak if onVisibilityChangedForAutoplay
() is never called. |
| 3927 // The leak comes from either ElementVisibilityObserver or IntersectionObser
ver. Should keep an eye on it. |
| 3928 // See https://crbug.com/627539 |
3926 m_autoplayVisibilityObserver->stop(); | 3929 m_autoplayVisibilityObserver->stop(); |
3927 m_autoplayVisibilityObserver = nullptr; | 3930 m_autoplayVisibilityObserver = nullptr; |
3928 } | 3931 } |
3929 | 3932 |
3930 void HTMLMediaElement::clearWeakMembers(Visitor* visitor) | 3933 void HTMLMediaElement::clearWeakMembers(Visitor* visitor) |
3931 { | 3934 { |
3932 if (!ThreadHeap::isHeapObjectAlive(m_audioSourceNode)) { | 3935 if (!ThreadHeap::isHeapObjectAlive(m_audioSourceNode)) { |
3933 getAudioSourceProvider().setClient(nullptr); | 3936 getAudioSourceProvider().setClient(nullptr); |
3934 m_audioSourceNode = nullptr; | 3937 m_audioSourceNode = nullptr; |
3935 } | 3938 } |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4033 | 4036 |
4034 IntRect HTMLMediaElement::AutoplayHelperClientImpl::absoluteBoundingBoxRect() co
nst | 4037 IntRect HTMLMediaElement::AutoplayHelperClientImpl::absoluteBoundingBoxRect() co
nst |
4035 { | 4038 { |
4036 IntRect result; | 4039 IntRect result; |
4037 if (LayoutObject* object = m_element->layoutObject()) | 4040 if (LayoutObject* object = m_element->layoutObject()) |
4038 result = object->absoluteBoundingBoxRect(); | 4041 result = object->absoluteBoundingBoxRect(); |
4039 return result; | 4042 return result; |
4040 } | 4043 } |
4041 | 4044 |
4042 } // namespace blink | 4045 } // namespace blink |
OLD | NEW |