Chromium Code Reviews

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

Issue 1576283003: Have HTMLMediaElement::play() return a Promise. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
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
11 * documentation and/or other materials provided with the distribution. 11 * documentation and/or other materials provided with the distribution.
12 * 12 *
13 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY 13 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY 20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
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 #ifndef HTMLMediaElement_h 26 #ifndef HTMLMediaElement_h
27 #define HTMLMediaElement_h 27 #define HTMLMediaElement_h
28 28
29 #include "bindings/core/v8/ScriptPromise.h"
29 #include "core/CoreExport.h" 30 #include "core/CoreExport.h"
30 #include "core/dom/ActiveDOMObject.h" 31 #include "core/dom/ActiveDOMObject.h"
32 #include "core/dom/ExceptionCode.h"
31 #include "core/events/GenericEventQueue.h" 33 #include "core/events/GenericEventQueue.h"
32 #include "core/html/AutoplayExperimentHelper.h" 34 #include "core/html/AutoplayExperimentHelper.h"
33 #include "core/html/HTMLElement.h" 35 #include "core/html/HTMLElement.h"
34 #include "core/html/track/TextTrack.h" 36 #include "core/html/track/TextTrack.h"
35 #include "platform/Supplementable.h" 37 #include "platform/Supplementable.h"
36 #include "platform/audio/AudioSourceProvider.h" 38 #include "platform/audio/AudioSourceProvider.h"
37 #include "public/platform/WebAudioSourceProviderClient.h" 39 #include "public/platform/WebAudioSourceProviderClient.h"
38 #include "public/platform/WebMediaPlayerClient.h" 40 #include "public/platform/WebMediaPlayerClient.h"
39 #include "public/platform/WebMimeRegistry.h" 41 #include "public/platform/WebMimeRegistry.h"
40 42
41 namespace blink { 43 namespace blink {
42 44
43 class AudioSourceProviderClient; 45 class AudioSourceProviderClient;
44 class AudioTrackList; 46 class AudioTrackList;
45 class ContentType; 47 class ContentType;
46 class CueTimeline; 48 class CueTimeline;
47 class Event; 49 class Event;
48 class ExceptionState; 50 class ExceptionState;
49 class HTMLSourceElement; 51 class HTMLSourceElement;
50 class HTMLTrackElement; 52 class HTMLTrackElement;
51 class KURL; 53 class KURL;
52 class MediaControls; 54 class MediaControls;
53 class MediaError; 55 class MediaError;
54 class HTMLMediaSource; 56 class HTMLMediaSource;
57 class ScriptState;
55 class TextTrackContainer; 58 class TextTrackContainer;
56 class TextTrackList; 59 class TextTrackList;
57 class TimeRanges; 60 class TimeRanges;
58 class URLRegistry; 61 class URLRegistry;
59 class VideoTrackList; 62 class VideoTrackList;
60 class WebAudioSourceProvider; 63 class WebAudioSourceProvider;
61 class WebInbandTextTrack; 64 class WebInbandTextTrack;
62 class WebLayer; 65 class WebLayer;
63 66
64 class CORE_EXPORT HTMLMediaElement : public HTMLElement, public WillBeHeapSupple mentable<HTMLMediaElement>, public ActiveDOMObject, private WebMediaPlayerClient { 67 class CORE_EXPORT HTMLMediaElement : public HTMLElement, public WillBeHeapSupple mentable<HTMLMediaElement>, public ActiveDOMObject, private WebMediaPlayerClient {
(...skipping 68 matching lines...)
133 double playbackRate() const; 136 double playbackRate() const;
134 void setPlaybackRate(double); 137 void setPlaybackRate(double);
135 void updatePlaybackRate(); 138 void updatePlaybackRate();
136 TimeRanges* played(); 139 TimeRanges* played();
137 TimeRanges* seekable() const; 140 TimeRanges* seekable() const;
138 bool ended() const; 141 bool ended() const;
139 bool autoplay() const; 142 bool autoplay() const;
140 bool shouldAutoplay(const RecordMetricsBehavior = RecordMetricsBehavior::DoN otRecord); 143 bool shouldAutoplay(const RecordMetricsBehavior = RecordMetricsBehavior::DoN otRecord);
141 bool loop() const; 144 bool loop() const;
142 void setLoop(bool); 145 void setLoop(bool);
143 void play(); 146 ScriptPromise playForBindings(ScriptState*);
147 Nullable<ExceptionCode> play();
144 void pause(); 148 void pause();
145 void requestRemotePlayback(); 149 void requestRemotePlayback();
146 void requestRemotePlaybackControl(); 150 void requestRemotePlaybackControl();
147 151
148 // statistics 152 // statistics
149 unsigned webkitAudioDecodedByteCount() const; 153 unsigned webkitAudioDecodedByteCount() const;
150 unsigned webkitVideoDecodedByteCount() const; 154 unsigned webkitVideoDecodedByteCount() const;
151 155
152 // media source extensions 156 // media source extensions
153 void closeMediaSource(); 157 void closeMediaSource();
(...skipping 288 matching lines...)
442 void removeUserGestureRequirement(); 446 void removeUserGestureRequirement();
443 void setInitialPlayWithoutUserGestures(bool); 447 void setInitialPlayWithoutUserGestures(bool);
444 448
445 void setNetworkState(NetworkState); 449 void setNetworkState(NetworkState);
446 450
447 void audioTracksTimerFired(Timer<HTMLMediaElement>*); 451 void audioTracksTimerFired(Timer<HTMLMediaElement>*);
448 452
449 // TODO(liberato): remove once autoplay gesture override experiment conclude s. 453 // TODO(liberato): remove once autoplay gesture override experiment conclude s.
450 void triggerAutoplayViewportCheckForTesting(); 454 void triggerAutoplayViewportCheckForTesting();
451 455
456 void scheduleResolvePlayPromises();
457 void scheduleRejectPlayPromises(ExceptionCode);
458 void scheduleNotifyPlaying();
459
460 void resolvePlayPromises();
461 // TODO(mlamouri): this is used for cancellable tasks because we can't pass
462 // parameters.
463 void rejectPlayPromises();
464 void rejectPlayPromises(ExceptionCode, const String&);
465
452 UnthrottledTimer<HTMLMediaElement> m_loadTimer; 466 UnthrottledTimer<HTMLMediaElement> m_loadTimer;
453 UnthrottledTimer<HTMLMediaElement> m_progressEventTimer; 467 UnthrottledTimer<HTMLMediaElement> m_progressEventTimer;
454 UnthrottledTimer<HTMLMediaElement> m_playbackProgressTimer; 468 UnthrottledTimer<HTMLMediaElement> m_playbackProgressTimer;
455 UnthrottledTimer<HTMLMediaElement> m_audioTracksTimer; 469 UnthrottledTimer<HTMLMediaElement> m_audioTracksTimer;
456 PersistentWillBeMember<TimeRanges> m_playedTimeRanges; 470 PersistentWillBeMember<TimeRanges> m_playedTimeRanges;
457 OwnPtrWillBeMember<GenericEventQueue> m_asyncEventQueue; 471 OwnPtrWillBeMember<GenericEventQueue> m_asyncEventQueue;
458 472
459 double m_playbackRate; 473 double m_playbackRate;
460 double m_defaultPlaybackRate; 474 double m_defaultPlaybackRate;
461 NetworkState m_networkState; 475 NetworkState m_networkState;
(...skipping 88 matching lines...)
550 // Whether this element is in overlay fullscreen mode. 564 // Whether this element is in overlay fullscreen mode.
551 bool m_inOverlayFullscreenVideo : 1; 565 bool m_inOverlayFullscreenVideo : 1;
552 566
553 PersistentWillBeMember<AudioTrackList> m_audioTracks; 567 PersistentWillBeMember<AudioTrackList> m_audioTracks;
554 PersistentWillBeMember<VideoTrackList> m_videoTracks; 568 PersistentWillBeMember<VideoTrackList> m_videoTracks;
555 PersistentWillBeMember<TextTrackList> m_textTracks; 569 PersistentWillBeMember<TextTrackList> m_textTracks;
556 PersistentHeapVectorWillBeHeapVector<Member<TextTrack>> m_textTracksWhenReso urceSelectionBegan; 570 PersistentHeapVectorWillBeHeapVector<Member<TextTrack>> m_textTracksWhenReso urceSelectionBegan;
557 571
558 OwnPtrWillBeMember<CueTimeline> m_cueTimeline; 572 OwnPtrWillBeMember<CueTimeline> m_cueTimeline;
559 573
574 PersistentHeapVectorWillBeHeapVector<Member<ScriptPromiseResolver>> m_playRe solvers;
575 OwnPtr<CancellableTaskFactory> m_playPromiseResolveTask;
576 OwnPtr<CancellableTaskFactory> m_playPromiseRejectTask;
577 ExceptionCode m_playPromiseErrorCode;
578
560 // This is a weak reference, since m_audioSourceNode holds a reference to us . 579 // This is a weak reference, since m_audioSourceNode holds a reference to us .
561 // FIXME: Oilpan: Consider making this a strongly traced pointer with oilpan where strong cycles are not a problem. 580 // FIXME: Oilpan: Consider making this a strongly traced pointer with oilpan where strong cycles are not a problem.
562 GC_PLUGIN_IGNORE("http://crbug.com/404577") 581 GC_PLUGIN_IGNORE("http://crbug.com/404577")
563 RawPtrWillBeWeakMember<AudioSourceProviderClient> m_audioSourceNode; 582 RawPtrWillBeWeakMember<AudioSourceProviderClient> m_audioSourceNode;
564 583
565 // AudioClientImpl wraps an AudioSourceProviderClient. 584 // AudioClientImpl wraps an AudioSourceProviderClient.
566 // When the audio format is known, Chromium calls setFormat(). 585 // When the audio format is known, Chromium calls setFormat().
567 class AudioClientImpl final : public GarbageCollectedFinalized<AudioClientIm pl>, public WebAudioSourceProviderClient { 586 class AudioClientImpl final : public GarbageCollectedFinalized<AudioClientIm pl>, public WebAudioSourceProviderClient {
568 public: 587 public:
569 explicit AudioClientImpl(AudioSourceProviderClient* client) 588 explicit AudioClientImpl(AudioSourceProviderClient* client)
(...skipping 54 matching lines...)
624 inline bool isHTMLMediaElement(const HTMLElement& element) 643 inline bool isHTMLMediaElement(const HTMLElement& element)
625 { 644 {
626 return isHTMLAudioElement(element) || isHTMLVideoElement(element); 645 return isHTMLAudioElement(element) || isHTMLVideoElement(element);
627 } 646 }
628 647
629 DEFINE_HTMLELEMENT_TYPE_CASTS_WITH_FUNCTION(HTMLMediaElement); 648 DEFINE_HTMLELEMENT_TYPE_CASTS_WITH_FUNCTION(HTMLMediaElement);
630 649
631 } // namespace blink 650 } // namespace blink
632 651
633 #endif // HTMLMediaElement_h 652 #endif // HTMLMediaElement_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/ExceptionCode.h ('k') | third_party/WebKit/Source/core/html/HTMLMediaElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine