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

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: review 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
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;
philipj_slow 2016/02/04 10:54:20 revert
mlamouri (slow - plz ping) 2016/02/18 17:06:06 Why?
philipj_slow 2016/02/19 07:32:48 Oops, I was looking at the diff between PS6 and PS
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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 void setPlaybackRate(double); 132 void setPlaybackRate(double);
130 void updatePlaybackRate(); 133 void updatePlaybackRate();
131 TimeRanges* played(); 134 TimeRanges* played();
132 TimeRanges* seekable() const; 135 TimeRanges* seekable() const;
133 bool ended() const; 136 bool ended() const;
134 bool autoplay() const; 137 bool autoplay() const;
135 enum class RecordMetricsBehavior { DoNotRecord, DoRecord }; 138 enum class RecordMetricsBehavior { DoNotRecord, DoRecord };
136 bool shouldAutoplay(const RecordMetricsBehavior = RecordMetricsBehavior::DoN otRecord); 139 bool shouldAutoplay(const RecordMetricsBehavior = RecordMetricsBehavior::DoN otRecord);
137 bool loop() const; 140 bool loop() const;
138 void setLoop(bool); 141 void setLoop(bool);
139 void play(); 142 ScriptPromise playForBindings(ScriptState*);
143 Nullable<ExceptionCode> play();
140 void pause(); 144 void pause();
141 void requestRemotePlayback(); 145 void requestRemotePlayback();
142 void requestRemotePlaybackControl(); 146 void requestRemotePlaybackControl();
143 147
144 // statistics 148 // statistics
145 unsigned webkitAudioDecodedByteCount() const; 149 unsigned webkitAudioDecodedByteCount() const;
146 unsigned webkitVideoDecodedByteCount() const; 150 unsigned webkitVideoDecodedByteCount() const;
147 151
148 // media source extensions 152 // media source extensions
149 void closeMediaSource(); 153 void closeMediaSource();
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after
438 void removeUserGestureRequirement(); 442 void removeUserGestureRequirement();
439 void setInitialPlayWithoutUserGestures(bool); 443 void setInitialPlayWithoutUserGestures(bool);
440 444
441 void setNetworkState(NetworkState); 445 void setNetworkState(NetworkState);
442 446
443 void audioTracksTimerFired(Timer<HTMLMediaElement>*); 447 void audioTracksTimerFired(Timer<HTMLMediaElement>*);
444 448
445 // TODO(liberato): remove once autoplay gesture override experiment conclude s. 449 // TODO(liberato): remove once autoplay gesture override experiment conclude s.
446 void triggerAutoplayViewportCheckForTesting(); 450 void triggerAutoplayViewportCheckForTesting();
447 451
452 void scheduleResolvePlayPromises();
453 void scheduleRejectPlayPromises(ExceptionCode, const String&);
454 void scheduleNotifyPlaying();
455
456 void resolvePlayPromises();
457 void rejectPlayPromises(ExceptionCode, const String&);
458
448 UnthrottledTimer<HTMLMediaElement> m_loadTimer; 459 UnthrottledTimer<HTMLMediaElement> m_loadTimer;
449 UnthrottledTimer<HTMLMediaElement> m_progressEventTimer; 460 UnthrottledTimer<HTMLMediaElement> m_progressEventTimer;
450 UnthrottledTimer<HTMLMediaElement> m_playbackProgressTimer; 461 UnthrottledTimer<HTMLMediaElement> m_playbackProgressTimer;
451 UnthrottledTimer<HTMLMediaElement> m_audioTracksTimer; 462 UnthrottledTimer<HTMLMediaElement> m_audioTracksTimer;
452 PersistentWillBeMember<TimeRanges> m_playedTimeRanges; 463 PersistentWillBeMember<TimeRanges> m_playedTimeRanges;
453 OwnPtrWillBeMember<GenericEventQueue> m_asyncEventQueue; 464 OwnPtrWillBeMember<GenericEventQueue> m_asyncEventQueue;
454 465
455 double m_playbackRate; 466 double m_playbackRate;
456 double m_defaultPlaybackRate; 467 double m_defaultPlaybackRate;
457 NetworkState m_networkState; 468 NetworkState m_networkState;
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
549 // Whether this element is in overlay fullscreen mode. 560 // Whether this element is in overlay fullscreen mode.
550 bool m_inOverlayFullscreenVideo : 1; 561 bool m_inOverlayFullscreenVideo : 1;
551 562
552 PersistentWillBeMember<AudioTrackList> m_audioTracks; 563 PersistentWillBeMember<AudioTrackList> m_audioTracks;
553 PersistentWillBeMember<VideoTrackList> m_videoTracks; 564 PersistentWillBeMember<VideoTrackList> m_videoTracks;
554 PersistentWillBeMember<TextTrackList> m_textTracks; 565 PersistentWillBeMember<TextTrackList> m_textTracks;
555 PersistentHeapVectorWillBeHeapVector<Member<TextTrack>> m_textTracksWhenReso urceSelectionBegan; 566 PersistentHeapVectorWillBeHeapVector<Member<TextTrack>> m_textTracksWhenReso urceSelectionBegan;
556 567
557 OwnPtrWillBeMember<CueTimeline> m_cueTimeline; 568 OwnPtrWillBeMember<CueTimeline> m_cueTimeline;
558 569
570 PersistentHeapVectorWillBeHeapVector<Member<ScriptPromiseResolver>> m_playRe solvers;
571
559 // This is a weak reference, since m_audioSourceNode holds a reference to us . 572 // This is a weak reference, since m_audioSourceNode holds a reference to us .
560 // FIXME: Oilpan: Consider making this a strongly traced pointer with oilpan where strong cycles are not a problem. 573 // FIXME: Oilpan: Consider making this a strongly traced pointer with oilpan where strong cycles are not a problem.
561 GC_PLUGIN_IGNORE("http://crbug.com/404577") 574 GC_PLUGIN_IGNORE("http://crbug.com/404577")
562 RawPtrWillBeWeakMember<AudioSourceProviderClient> m_audioSourceNode; 575 RawPtrWillBeWeakMember<AudioSourceProviderClient> m_audioSourceNode;
563 576
564 // AudioClientImpl wraps an AudioSourceProviderClient. 577 // AudioClientImpl wraps an AudioSourceProviderClient.
565 // When the audio format is known, Chromium calls setFormat(). 578 // When the audio format is known, Chromium calls setFormat().
566 class AudioClientImpl final : public GarbageCollectedFinalized<AudioClientIm pl>, public WebAudioSourceProviderClient { 579 class AudioClientImpl final : public GarbageCollectedFinalized<AudioClientIm pl>, public WebAudioSourceProviderClient {
567 public: 580 public:
568 explicit AudioClientImpl(AudioSourceProviderClient* client) 581 explicit AudioClientImpl(AudioSourceProviderClient* client)
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
623 inline bool isHTMLMediaElement(const HTMLElement& element) 636 inline bool isHTMLMediaElement(const HTMLElement& element)
624 { 637 {
625 return isHTMLAudioElement(element) || isHTMLVideoElement(element); 638 return isHTMLAudioElement(element) || isHTMLVideoElement(element);
626 } 639 }
627 640
628 DEFINE_HTMLELEMENT_TYPE_CASTS_WITH_FUNCTION(HTMLMediaElement); 641 DEFINE_HTMLELEMENT_TYPE_CASTS_WITH_FUNCTION(HTMLMediaElement);
629 642
630 } // namespace blink 643 } // namespace blink
631 644
632 #endif // HTMLMediaElement_h 645 #endif // HTMLMediaElement_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698