Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(38)

Side by Side Diff: third_party/WebKit/Source/core/html/HTMLMediaElement.cpp

Issue 1576283003: Have HTMLMediaElement::play() return a Promise. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: hiroshige comments Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 11 matching lines...) Expand all
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 #include "core/html/HTMLMediaElement.h" 26 #include "core/html/HTMLMediaElement.h"
27 27
28 #include "bindings/core/v8/ExceptionState.h" 28 #include "bindings/core/v8/ExceptionState.h"
29 #include "bindings/core/v8/ExceptionStatePlaceholder.h" 29 #include "bindings/core/v8/ExceptionStatePlaceholder.h"
30 #include "bindings/core/v8/ScriptController.h" 30 #include "bindings/core/v8/ScriptController.h"
31 #include "bindings/core/v8/ScriptEventListener.h" 31 #include "bindings/core/v8/ScriptEventListener.h"
32 #include "bindings/core/v8/ScriptPromiseResolver.h"
32 #include "core/HTMLNames.h" 33 #include "core/HTMLNames.h"
33 #include "core/css/MediaList.h" 34 #include "core/css/MediaList.h"
34 #include "core/dom/Attribute.h" 35 #include "core/dom/Attribute.h"
35 #include "core/dom/ElementTraversal.h" 36 #include "core/dom/ElementTraversal.h"
36 #include "core/dom/ExceptionCode.h"
37 #include "core/dom/Fullscreen.h" 37 #include "core/dom/Fullscreen.h"
38 #include "core/dom/shadow/ShadowRoot.h" 38 #include "core/dom/shadow/ShadowRoot.h"
39 #include "core/events/Event.h" 39 #include "core/events/Event.h"
40 #include "core/frame/LocalFrame.h" 40 #include "core/frame/LocalFrame.h"
41 #include "core/frame/Settings.h" 41 #include "core/frame/Settings.h"
42 #include "core/frame/UseCounter.h" 42 #include "core/frame/UseCounter.h"
43 #include "core/frame/csp/ContentSecurityPolicy.h" 43 #include "core/frame/csp/ContentSecurityPolicy.h"
44 #include "core/html/HTMLMediaSource.h" 44 #include "core/html/HTMLMediaSource.h"
45 #include "core/html/HTMLSourceElement.h" 45 #include "core/html/HTMLSourceElement.h"
46 #include "core/html/HTMLTrackElement.h" 46 #include "core/html/HTMLTrackElement.h"
(...skipping 18 matching lines...) Expand all
65 #include "core/loader/FrameLoaderClient.h" 65 #include "core/loader/FrameLoaderClient.h"
66 #include "core/page/ChromeClient.h" 66 #include "core/page/ChromeClient.h"
67 #include "core/page/NetworkStateNotifier.h" 67 #include "core/page/NetworkStateNotifier.h"
68 #include "platform/ContentType.h" 68 #include "platform/ContentType.h"
69 #include "platform/Histogram.h" 69 #include "platform/Histogram.h"
70 #include "platform/LayoutTestSupport.h" 70 #include "platform/LayoutTestSupport.h"
71 #include "platform/Logging.h" 71 #include "platform/Logging.h"
72 #include "platform/MIMETypeFromURL.h" 72 #include "platform/MIMETypeFromURL.h"
73 #include "platform/MIMETypeRegistry.h" 73 #include "platform/MIMETypeRegistry.h"
74 #include "platform/RuntimeEnabledFeatures.h" 74 #include "platform/RuntimeEnabledFeatures.h"
75 #include "platform/Task.h"
hiroshige 2016/02/22 17:43:10 We can remove this #include if we omit new Task()'
mlamouri (slow - plz ping) 2016/02/23 16:49:00 Done.
75 #include "platform/UserGestureIndicator.h" 76 #include "platform/UserGestureIndicator.h"
76 #include "platform/audio/AudioBus.h" 77 #include "platform/audio/AudioBus.h"
77 #include "platform/audio/AudioSourceProviderClient.h" 78 #include "platform/audio/AudioSourceProviderClient.h"
78 #include "platform/graphics/GraphicsLayer.h" 79 #include "platform/graphics/GraphicsLayer.h"
79 #include "platform/weborigin/SecurityOrigin.h" 80 #include "platform/weborigin/SecurityOrigin.h"
80 #include "public/platform/Platform.h" 81 #include "public/platform/Platform.h"
81 #include "public/platform/WebAudioSourceProvider.h" 82 #include "public/platform/WebAudioSourceProvider.h"
82 #include "public/platform/WebContentDecryptionModule.h" 83 #include "public/platform/WebContentDecryptionModule.h"
83 #include "public/platform/WebInbandTextTrack.h" 84 #include "public/platform/WebInbandTextTrack.h"
84 #include "wtf/CurrentTime.h" 85 #include "wtf/CurrentTime.h"
(...skipping 638 matching lines...) Expand 10 before | Expand all | Expand 10 after
723 m_displayMode = Unknown; 724 m_displayMode = Unknown;
724 725
725 // 1 - Abort any already-running instance of the resource selection algorith m for this element. 726 // 1 - Abort any already-running instance of the resource selection algorith m for this element.
726 m_loadState = WaitingForSource; 727 m_loadState = WaitingForSource;
727 m_currentSourceNode = nullptr; 728 m_currentSourceNode = nullptr;
728 729
729 // 2 - If there are any tasks from the media element's media element event t ask source in 730 // 2 - If there are any tasks from the media element's media element event t ask source in
730 // one of the task queues, then remove those tasks. 731 // one of the task queues, then remove those tasks.
731 cancelPendingEventsAndCallbacks(); 732 cancelPendingEventsAndCallbacks();
732 733
734 rejectPlayPromises(AbortError, "The play() request was interrupted by a new load request.");
735
733 // 3 - If the media element's networkState is set to NETWORK_LOADING or NETW ORK_IDLE, queue 736 // 3 - If the media element's networkState is set to NETWORK_LOADING or NETW ORK_IDLE, queue
734 // a task to fire a simple event named abort at the media element. 737 // a task to fire a simple event named abort at the media element.
735 if (m_networkState == NETWORK_LOADING || m_networkState == NETWORK_IDLE) 738 if (m_networkState == NETWORK_LOADING || m_networkState == NETWORK_IDLE)
736 scheduleEvent(EventTypeNames::abort); 739 scheduleEvent(EventTypeNames::abort);
737 740
738 resetMediaPlayerAndMediaSource(); 741 resetMediaPlayerAndMediaSource();
739 742
740 // 4 - If the media element's networkState is not set to NETWORK_EMPTY, then run these substeps 743 // 4 - If the media element's networkState is not set to NETWORK_EMPTY, then run these substeps
741 if (m_networkState != NETWORK_EMPTY) { 744 if (m_networkState != NETWORK_EMPTY) {
742 // 4.1 - Queue a task to fire a simple event named emptied at the media element. 745 // 4.1 - Queue a task to fire a simple event named emptied at the media element.
(...skipping 494 matching lines...) Expand 10 before | Expand all | Expand 10 after
1237 } 1240 }
1238 1241
1239 void HTMLMediaElement::noneSupported() 1242 void HTMLMediaElement::noneSupported()
1240 { 1243 {
1241 WTF_LOG(Media, "HTMLMediaElement::noneSupported(%p)", this); 1244 WTF_LOG(Media, "HTMLMediaElement::noneSupported(%p)", this);
1242 1245
1243 stopPeriodicTimers(); 1246 stopPeriodicTimers();
1244 m_loadState = WaitingForSource; 1247 m_loadState = WaitingForSource;
1245 m_currentSourceNode = nullptr; 1248 m_currentSourceNode = nullptr;
1246 1249
1247 // 4.8.10.5 1250 // 4.8.13.5
1248 // 6 - Reaching this step indicates that the media resource failed to load o r that the given 1251 // The dedicated media source failure steps are the following steps:
1249 // URL could not be resolved. In one atomic operation, run the following ste ps:
1250 1252
1251 // 6.1 - Set the error attribute to a new MediaError object whose code attri bute is set to 1253 // 1 - Set the error attribute to a new MediaError object whose code attribu te is set to
1252 // MEDIA_ERR_SRC_NOT_SUPPORTED. 1254 // MEDIA_ERR_SRC_NOT_SUPPORTED.
1253 m_error = MediaError::create(MediaError::MEDIA_ERR_SRC_NOT_SUPPORTED); 1255 m_error = MediaError::create(MediaError::MEDIA_ERR_SRC_NOT_SUPPORTED);
1254 1256
1255 // 6.2 - Forget the media element's media-resource-specific text tracks. 1257 // 2 - Forget the media element's media-resource-specific text tracks.
1256 forgetResourceSpecificTracks(); 1258 forgetResourceSpecificTracks();
1257 1259
1258 // 6.3 - Set the element's networkState attribute to the NETWORK_NO_SOURCE v alue. 1260 // 3 - Set the element's networkState attribute to the NETWORK_NO_SOURCE val ue.
1259 setNetworkState(NETWORK_NO_SOURCE); 1261 setNetworkState(NETWORK_NO_SOURCE);
1260 1262
1261 // 7 - Queue a task to fire a simple event named error at the media element. 1263 // 4 - Set the element's show poster flag to true.
1264 updateDisplayState();
1265
1266 // 5 - Fire a simple event named error at the media element.
1262 scheduleEvent(EventTypeNames::error); 1267 scheduleEvent(EventTypeNames::error);
1263 1268
1269 // 6 - Reject pending play promises with NotSupportedError.
1270 scheduleRejectPlayPromises(NotSupportedError, "Failed to load because no sup ported source was found.");
1271
1264 closeMediaSource(); 1272 closeMediaSource();
1265 1273
1266 // 8 - Set the element's delaying-the-load-event flag to false. This stops d elaying the load event. 1274 // 7 - Set the element's delaying-the-load-event flag to false. This stops d elaying the load event.
1267 setShouldDelayLoadEvent(false); 1275 setShouldDelayLoadEvent(false);
1268 1276
1269 // 9 - Abort these steps. Until the load() method is invoked or the src attr ibute is changed,
1270 // the element won't attempt to load another resource.
1271
1272 updateDisplayState();
1273
1274 if (layoutObject()) 1277 if (layoutObject())
1275 layoutObject()->updateFromElement(); 1278 layoutObject()->updateFromElement();
1276 } 1279 }
1277 1280
1278 void HTMLMediaElement::mediaEngineError(MediaError* err) 1281 void HTMLMediaElement::mediaEngineError(MediaError* err)
1279 { 1282 {
1280 ASSERT(m_readyState >= HAVE_METADATA); 1283 ASSERT(m_readyState >= HAVE_METADATA);
1281 WTF_LOG(Media, "HTMLMediaElement::mediaEngineError(%p, %d)", this, static_ca st<int>(err->code())); 1284 WTF_LOG(Media, "HTMLMediaElement::mediaEngineError(%p, %d)", this, static_ca st<int>(err->code()));
1282 1285
1283 // 1 - The user agent should cancel the fetching process. 1286 // 1 - The user agent should cancel the fetching process.
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
1512 m_haveFiredLoadedData = true; 1515 m_haveFiredLoadedData = true;
1513 shouldUpdateDisplayState = true; 1516 shouldUpdateDisplayState = true;
1514 scheduleEvent(EventTypeNames::loadeddata); 1517 scheduleEvent(EventTypeNames::loadeddata);
1515 setShouldDelayLoadEvent(false); 1518 setShouldDelayLoadEvent(false);
1516 } 1519 }
1517 1520
1518 bool isPotentiallyPlaying = potentiallyPlaying(); 1521 bool isPotentiallyPlaying = potentiallyPlaying();
1519 if (m_readyState == HAVE_FUTURE_DATA && oldState <= HAVE_CURRENT_DATA && tra cksAreReady) { 1522 if (m_readyState == HAVE_FUTURE_DATA && oldState <= HAVE_CURRENT_DATA && tra cksAreReady) {
1520 scheduleEvent(EventTypeNames::canplay); 1523 scheduleEvent(EventTypeNames::canplay);
1521 if (isPotentiallyPlaying) 1524 if (isPotentiallyPlaying)
1522 scheduleEvent(EventTypeNames::playing); 1525 scheduleNotifyPlaying();
1523 shouldUpdateDisplayState = true; 1526 shouldUpdateDisplayState = true;
1524 } 1527 }
1525 1528
1526 if (m_readyState == HAVE_ENOUGH_DATA && oldState < HAVE_ENOUGH_DATA && track sAreReady) { 1529 if (m_readyState == HAVE_ENOUGH_DATA && oldState < HAVE_ENOUGH_DATA && track sAreReady) {
1527 if (oldState <= HAVE_CURRENT_DATA) { 1530 if (oldState <= HAVE_CURRENT_DATA) {
1528 scheduleEvent(EventTypeNames::canplay); 1531 scheduleEvent(EventTypeNames::canplay);
1529 if (isPotentiallyPlaying) 1532 if (isPotentiallyPlaying)
1530 scheduleEvent(EventTypeNames::playing); 1533 scheduleNotifyPlaying();
1531 } 1534 }
1532 1535
1533 // Check for autoplay, and record metrics about it if needed. 1536 // Check for autoplay, and record metrics about it if needed.
1534 if (shouldAutoplay(RecordMetricsBehavior::DoRecord)) { 1537 if (shouldAutoplay(RecordMetricsBehavior::DoRecord)) {
1535 // If the autoplay experiment says that it's okay to play now, 1538 // If the autoplay experiment says that it's okay to play now,
1536 // then don't require a user gesture. 1539 // then don't require a user gesture.
1537 m_autoplayHelper.becameReadyToPlay(); 1540 m_autoplayHelper.becameReadyToPlay();
1538 1541
1539 if (!m_userGestureRequiredForPlay) { 1542 if (!m_userGestureRequiredForPlay) {
1540 m_paused = false; 1543 m_paused = false;
1541 invalidateCachedTime(); 1544 invalidateCachedTime();
1542 scheduleEvent(EventTypeNames::play); 1545 scheduleEvent(EventTypeNames::play);
1543 scheduleEvent(EventTypeNames::playing); 1546 scheduleNotifyPlaying();
1544 m_autoplaying = false; 1547 m_autoplaying = false;
1545 } 1548 }
1546 } 1549 }
1547 1550
1548 scheduleEvent(EventTypeNames::canplaythrough); 1551 scheduleEvent(EventTypeNames::canplaythrough);
1549 1552
1550 shouldUpdateDisplayState = true; 1553 shouldUpdateDisplayState = true;
1551 } 1554 }
1552 1555
1553 if (shouldUpdateDisplayState) { 1556 if (shouldUpdateDisplayState) {
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after
1925 // https://crbug.com/310450 1928 // https://crbug.com/310450
1926 UseCounter::count(document(), UseCounter::HTMLMediaElementPreloadDefault); 1929 UseCounter::count(document(), UseCounter::HTMLMediaElementPreloadDefault);
1927 return WebMediaPlayer::PreloadAuto; 1930 return WebMediaPlayer::PreloadAuto;
1928 } 1931 }
1929 1932
1930 WebMediaPlayer::Preload HTMLMediaElement::effectivePreloadType() const 1933 WebMediaPlayer::Preload HTMLMediaElement::effectivePreloadType() const
1931 { 1934 {
1932 return autoplay() ? WebMediaPlayer::PreloadAuto : preloadType(); 1935 return autoplay() ? WebMediaPlayer::PreloadAuto : preloadType();
1933 } 1936 }
1934 1937
1935 void HTMLMediaElement::play() 1938 ScriptPromise HTMLMediaElement::playForBindings(ScriptState* scriptState)
1939 {
1940 Nullable<ExceptionCode> code = play();
1941 if (!code.isNull()) {
1942 String message;
1943 switch (code.get()) {
1944 case NotAllowedError:
1945 message = "play() can only be initiated by a user gesture.";
1946 break;
1947 case NotSupportedError:
1948 message = "The element has no supported sources.";
1949 break;
1950 default:
1951 ASSERT_NOT_REACHED();
1952 }
1953 return ScriptPromise::rejectWithDOMException(scriptState, DOMException:: create(code.get(), message));
1954 }
1955
1956 ScriptPromiseResolver* resolver = ScriptPromiseResolver::create(scriptState) ;
1957 ScriptPromise promise = resolver->promise();
1958
1959 m_playResolvers.append(resolver);
1960 return promise;
1961 }
1962
1963 Nullable<ExceptionCode> HTMLMediaElement::play()
1936 { 1964 {
1937 WTF_LOG(Media, "HTMLMediaElement::play(%p)", this); 1965 WTF_LOG(Media, "HTMLMediaElement::play(%p)", this);
1938 1966
1939 m_autoplayHelper.playMethodCalled(); 1967 m_autoplayHelper.playMethodCalled();
1940 1968
1941 if (!UserGestureIndicator::processingUserGesture()) { 1969 if (!UserGestureIndicator::processingUserGesture()) {
1942 autoplayMediaEncountered(); 1970 autoplayMediaEncountered();
1943 1971
1944 if (m_userGestureRequiredForPlay) { 1972 if (m_userGestureRequiredForPlay) {
1945 recordAutoplayMetric(PlayMethodFailed); 1973 recordAutoplayMetric(PlayMethodFailed);
1946 String message = ExceptionMessages::failedToExecute("play", "HTMLMed iaElement", "API can only be initiated by a user gesture."); 1974 String message = ExceptionMessages::failedToExecute("play", "HTMLMed iaElement", "API can only be initiated by a user gesture.");
1947 document().addConsoleMessage(ConsoleMessage::create(JSMessageSource, WarningMessageLevel, message)); 1975 document().addConsoleMessage(ConsoleMessage::create(JSMessageSource, WarningMessageLevel, message));
1948 return; 1976 return NotAllowedError;
1949 } 1977 }
1950 } else if (m_userGestureRequiredForPlay) { 1978 } else if (m_userGestureRequiredForPlay) {
1951 if (m_autoplayMediaCounted) 1979 if (m_autoplayMediaCounted)
1952 recordAutoplayMetric(AutoplayManualStart); 1980 recordAutoplayMetric(AutoplayManualStart);
1953 m_userGestureRequiredForPlay = false; 1981 m_userGestureRequiredForPlay = false;
1954 } 1982 }
1955 1983
1984 if (m_error && m_error->code() == MediaError::MEDIA_ERR_SRC_NOT_SUPPORTED)
1985 return NotSupportedError;
1986
1956 playInternal(); 1987 playInternal();
1988
1989 return nullptr;
1957 } 1990 }
1958 1991
1959 void HTMLMediaElement::playInternal() 1992 void HTMLMediaElement::playInternal()
1960 { 1993 {
1961 WTF_LOG(Media, "HTMLMediaElement::playInternal(%p)", this); 1994 WTF_LOG(Media, "HTMLMediaElement::playInternal(%p)", this);
1962 1995
1963 // Always return the buffering strategy to normal when not paused, 1996 // Always return the buffering strategy to normal when not paused,
1964 // regardless of the cause. (In contrast with aggressive buffering which is 1997 // regardless of the cause. (In contrast with aggressive buffering which is
1965 // only enabled by pause(), not pauseInternal().) 1998 // only enabled by pause(), not pauseInternal().)
1966 if (webMediaPlayer()) 1999 if (webMediaPlayer())
(...skipping 10 matching lines...) Expand all
1977 seek(0); 2010 seek(0);
1978 2011
1979 if (m_paused) { 2012 if (m_paused) {
1980 m_paused = false; 2013 m_paused = false;
1981 invalidateCachedTime(); 2014 invalidateCachedTime();
1982 scheduleEvent(EventTypeNames::play); 2015 scheduleEvent(EventTypeNames::play);
1983 2016
1984 if (m_readyState <= HAVE_CURRENT_DATA) 2017 if (m_readyState <= HAVE_CURRENT_DATA)
1985 scheduleEvent(EventTypeNames::waiting); 2018 scheduleEvent(EventTypeNames::waiting);
1986 else if (m_readyState >= HAVE_FUTURE_DATA) 2019 else if (m_readyState >= HAVE_FUTURE_DATA)
1987 scheduleEvent(EventTypeNames::playing); 2020 scheduleNotifyPlaying();
2021 } else if (m_readyState >= HAVE_FUTURE_DATA) {
2022 scheduleResolvePlayPromises();
1988 } 2023 }
2024
1989 m_autoplaying = false; 2025 m_autoplaying = false;
1990 2026
1991 updatePlayState(); 2027 updatePlayState();
1992 } 2028 }
1993 2029
1994 void HTMLMediaElement::autoplayMediaEncountered() 2030 void HTMLMediaElement::autoplayMediaEncountered()
1995 { 2031 {
1996 if (!m_autoplayMediaCounted) { 2032 if (!m_autoplayMediaCounted) {
1997 m_autoplayMediaCounted = true; 2033 m_autoplayMediaCounted = true;
1998 recordAutoplayMetric(AutoplayMediaFound); 2034 recordAutoplayMetric(AutoplayMediaFound);
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
2033 m_autoplayHelper.pauseMethodCalled(); 2069 m_autoplayHelper.pauseMethodCalled();
2034 2070
2035 m_autoplaying = false; 2071 m_autoplaying = false;
2036 2072
2037 if (!m_paused) { 2073 if (!m_paused) {
2038 recordMetricsIfPausing(); 2074 recordMetricsIfPausing();
2039 2075
2040 m_paused = true; 2076 m_paused = true;
2041 scheduleTimeupdateEvent(false); 2077 scheduleTimeupdateEvent(false);
2042 scheduleEvent(EventTypeNames::pause); 2078 scheduleEvent(EventTypeNames::pause);
2079 scheduleRejectPlayPromises(AbortError, "The play() request was interrupt ed by a call to pause().");
2043 } 2080 }
2044 2081
2045 updatePlayState(); 2082 updatePlayState();
2046 } 2083 }
2047 2084
2048 void HTMLMediaElement::requestRemotePlayback() 2085 void HTMLMediaElement::requestRemotePlayback()
2049 { 2086 {
2050 ASSERT(m_remoteRoutesAvailable); 2087 ASSERT(m_remoteRoutesAvailable);
2051 webMediaPlayer()->requestRemotePlayback(); 2088 webMediaPlayer()->requestRemotePlayback();
2052 } 2089 }
(...skipping 1434 matching lines...) Expand 10 before | Expand all | Expand 10 after
3487 visitor->trace(m_asyncEventQueue); 3524 visitor->trace(m_asyncEventQueue);
3488 visitor->trace(m_error); 3525 visitor->trace(m_error);
3489 visitor->trace(m_currentSourceNode); 3526 visitor->trace(m_currentSourceNode);
3490 visitor->trace(m_nextChildNodeToConsider); 3527 visitor->trace(m_nextChildNodeToConsider);
3491 visitor->trace(m_mediaSource); 3528 visitor->trace(m_mediaSource);
3492 visitor->trace(m_audioTracks); 3529 visitor->trace(m_audioTracks);
3493 visitor->trace(m_videoTracks); 3530 visitor->trace(m_videoTracks);
3494 visitor->trace(m_cueTimeline); 3531 visitor->trace(m_cueTimeline);
3495 visitor->trace(m_textTracks); 3532 visitor->trace(m_textTracks);
3496 visitor->trace(m_textTracksWhenResourceSelectionBegan); 3533 visitor->trace(m_textTracksWhenResourceSelectionBegan);
3534 visitor->trace(m_playResolvers);
3497 visitor->trace(m_audioSourceProvider); 3535 visitor->trace(m_audioSourceProvider);
3498 visitor->template registerWeakMembers<HTMLMediaElement, &HTMLMediaElement::c learWeakMembers>(this); 3536 visitor->template registerWeakMembers<HTMLMediaElement, &HTMLMediaElement::c learWeakMembers>(this);
3499 visitor->trace(m_autoplayHelper); 3537 visitor->trace(m_autoplayHelper);
3500 HeapSupplementable<HTMLMediaElement>::trace(visitor); 3538 HeapSupplementable<HTMLMediaElement>::trace(visitor);
3501 #endif 3539 #endif
3502 HTMLElement::trace(visitor); 3540 HTMLElement::trace(visitor);
3503 ActiveDOMObject::trace(visitor); 3541 ActiveDOMObject::trace(visitor);
3504 } 3542 }
3505 3543
3506 void HTMLMediaElement::createPlaceholderTracksIfNecessary() 3544 void HTMLMediaElement::createPlaceholderTracksIfNecessary()
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
3564 { 3602 {
3565 m_autoplayHelper.updatePositionNotificationRegistration(); 3603 m_autoplayHelper.updatePositionNotificationRegistration();
3566 } 3604 }
3567 3605
3568 // TODO(liberato): remove once autoplay gesture override experiment concludes. 3606 // TODO(liberato): remove once autoplay gesture override experiment concludes.
3569 void HTMLMediaElement::triggerAutoplayViewportCheckForTesting() 3607 void HTMLMediaElement::triggerAutoplayViewportCheckForTesting()
3570 { 3608 {
3571 m_autoplayHelper.triggerAutoplayViewportCheckForTesting(); 3609 m_autoplayHelper.triggerAutoplayViewportCheckForTesting();
3572 } 3610 }
3573 3611
3612 void HTMLMediaElement::scheduleResolvePlayPromises()
3613 {
3614 Platform::current()->currentThread()->taskRunner()->postTask(
3615 BLINK_FROM_HERE, new Task(WTF::bind(&HTMLMediaElement::resolvePlayPromis es, PassRefPtrWillBeRawPtr<HTMLMediaElement>(this))));
hiroshige 2016/02/22 17:43:10 bind() usage looks good. BTW, could you omit new
mlamouri (slow - plz ping) 2016/02/23 16:49:00 Done.
3616 }
3617
3618 void HTMLMediaElement::scheduleRejectPlayPromises(ExceptionCode code, const Stri ng& message)
3619 {
3620 Platform::current()->currentThread()->taskRunner()->postTask(
3621 BLINK_FROM_HERE, new Task(WTF::bind(&HTMLMediaElement::rejectPlayPromise s, PassRefPtrWillBeRawPtr<HTMLMediaElement>(this), code, message)));
hiroshige 2016/02/22 17:43:10 ditto.
mlamouri (slow - plz ping) 2016/02/23 16:49:00 Done.
3622 }
3623
3624 void HTMLMediaElement::scheduleNotifyPlaying()
3625 {
3626 scheduleEvent(EventTypeNames::playing);
3627 scheduleResolvePlayPromises();
3628 }
3629
3630 void HTMLMediaElement::resolvePlayPromises()
3631 {
3632 for (auto& resolver: m_playResolvers)
3633 resolver->resolve();
3634
3635 m_playResolvers.clear();
3636 }
3637
3638 void HTMLMediaElement::rejectPlayPromises(ExceptionCode code, const String& mess age)
3639 {
3640 ASSERT(code == AbortError || code == NotSupportedError);
3641
3642 for (auto& resolver: m_playResolvers)
3643 resolver->reject(DOMException::create(code, message));
3644
3645 m_playResolvers.clear();
3646 }
3647
3574 void HTMLMediaElement::clearWeakMembers(Visitor* visitor) 3648 void HTMLMediaElement::clearWeakMembers(Visitor* visitor)
3575 { 3649 {
3576 if (!Heap::isHeapObjectAlive(m_audioSourceNode)) 3650 if (!Heap::isHeapObjectAlive(m_audioSourceNode))
3577 audioSourceProvider().setClient(nullptr); 3651 audioSourceProvider().setClient(nullptr);
3578 } 3652 }
3579 3653
3580 void HTMLMediaElement::AudioSourceProviderImpl::wrap(WebAudioSourceProvider* pro vider) 3654 void HTMLMediaElement::AudioSourceProviderImpl::wrap(WebAudioSourceProvider* pro vider)
3581 { 3655 {
3582 MutexLocker locker(provideInputLock); 3656 MutexLocker locker(provideInputLock);
3583 3657
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
3631 { 3705 {
3632 visitor->trace(m_client); 3706 visitor->trace(m_client);
3633 } 3707 }
3634 3708
3635 DEFINE_TRACE(HTMLMediaElement::AudioSourceProviderImpl) 3709 DEFINE_TRACE(HTMLMediaElement::AudioSourceProviderImpl)
3636 { 3710 {
3637 visitor->trace(m_client); 3711 visitor->trace(m_client);
3638 } 3712 }
3639 3713
3640 } // namespace blink 3714 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698