summaryrefslogtreecommitdiff
path: root/Source/WebCore/html/HTMLMediaElement.idl
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/html/HTMLMediaElement.idl')
-rw-r--r--Source/WebCore/html/HTMLMediaElement.idl88
1 files changed, 42 insertions, 46 deletions
diff --git a/Source/WebCore/html/HTMLMediaElement.idl b/Source/WebCore/html/HTMLMediaElement.idl
index b233dde81..a07da4150 100644
--- a/Source/WebCore/html/HTMLMediaElement.idl
+++ b/Source/WebCore/html/HTMLMediaElement.idl
@@ -10,10 +10,10 @@
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
+ * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
@@ -23,18 +23,31 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+
+typedef (
+#if defined(ENABLE_MEDIA_STREAM) && ENABLE_MEDIA_STREAM
+ MediaStream or
+#endif
+#if defined(ENABLE_MEDIA_SOURCE) && ENABLE_MEDIA_SOURCE
+ MediaSource or
+#endif
+ Blob) MediaProvider;
+
[
+ ActiveDOMObject,
Conditional=VIDEO,
+ ExportMacro=WEBCORE_EXPORT,
JSGenerateToNativeObject,
- ActiveDOMObject,
] interface HTMLMediaElement : HTMLElement {
// error state
readonly attribute MediaError error;
// network state
- [Reflect, URL] attribute DOMString src;
- [URL] readonly attribute DOMString currentSrc;
+ [Reflect, URL] attribute USVString src;
+ attribute MediaProvider? srcObject;
+ [URL] readonly attribute USVString currentSrc;
+ attribute DOMString? crossOrigin;
const unsigned short NETWORK_EMPTY = 0;
const unsigned short NETWORK_IDLE = 1;
@@ -45,13 +58,8 @@
readonly attribute TimeRanges buffered;
void load();
-#if defined(ENABLE_ENCRYPTED_MEDIA) && ENABLE_ENCRYPTED_MEDIA
- DOMString canPlayType([Default=Undefined] optional DOMString type, [Default=Undefined, TreatNullAs=NullString, TreatUndefinedAs=NullString] optional DOMString keySystem);
-#elif defined(ENABLE_ENCRYPTED_MEDIA_V2) && ENABLE_ENCRYPTED_MEDIA_V2
- DOMString canPlayType([Default=Undefined] optional DOMString type, [Default=Undefined, TreatNullAs=NullString, TreatUndefinedAs=NullString] optional DOMString keySystem);
-#else
- DOMString canPlayType([Default=Undefined] optional DOMString type);
-#endif
+
+ DOMString canPlayType(DOMString type);
// ready state
const unsigned short HAVE_NOTHING = 0;
@@ -63,23 +71,24 @@
readonly attribute boolean seeking;
// playback state
- attribute double currentTime;
- readonly attribute double duration;
+ [ImplementedAs=currentTimeForBindings, SetterMayThrowException] attribute unrestricted double currentTime;
+ readonly attribute unrestricted double duration;
+ Date getStartDate();
readonly attribute boolean paused;
- attribute double defaultPlaybackRate;
- attribute double playbackRate;
+ attribute unrestricted double defaultPlaybackRate;
+ attribute unrestricted double playbackRate;
readonly attribute TimeRanges played;
readonly attribute TimeRanges seekable;
readonly attribute boolean ended;
[Reflect] attribute boolean autoplay;
[Reflect] attribute boolean loop;
- void play();
+ Promise<void> play();
void pause();
- void fastSeek(double time);
+ void fastSeek(unrestricted double time);
// controls
attribute boolean controls;
- [SetterRaisesException] attribute double volume;
+ [SetterMayThrowException] attribute double volume;
attribute boolean muted;
[Reflect=muted] attribute boolean defaultMuted;
@@ -93,37 +102,24 @@
[Conditional=MEDIA_STATISTICS] readonly attribute unsigned long webkitAudioDecodedByteCount;
[Conditional=MEDIA_STATISTICS] readonly attribute unsigned long webkitVideoDecodedByteCount;
-#if defined(ENABLE_ENCRYPTED_MEDIA) && ENABLE_ENCRYPTED_MEDIA
- [RaisesException] void webkitGenerateKeyRequest([TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString keySystem, optional Uint8Array initData);
- [RaisesException] void webkitAddKey([TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString keySystem, Uint8Array key, optional Uint8Array initData, [Default=NullString] optional DOMString sessionId);
- [RaisesException] void webkitCancelKeyRequest([TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString keySystem, [Default=NullString] optional DOMString sessionId);
+ [Conditional=LEGACY_ENCRYPTED_MEDIA] readonly attribute WebKitMediaKeys webkitKeys;
+ [Conditional=LEGACY_ENCRYPTED_MEDIA] void webkitSetMediaKeys(WebKitMediaKeys? mediaKeys);
+ [Conditional=ENCRYPTED_MEDIA, EnabledAtRuntime=EncryptedMediaAPI] readonly attribute MediaKeys mediaKeys;
+ [Conditional=ENCRYPTED_MEDIA, EnabledAtRuntime=EncryptedMediaAPI] attribute EventHandler onencrypted;
+ [Conditional=ENCRYPTED_MEDIA, EnabledAtRuntime=EncryptedMediaAPI] attribute EventHandler onwaitingforkey;
+ [Conditional=ENCRYPTED_MEDIA, EnabledAtRuntime=EncryptedMediaAPI] Promise<void> setMediaKeys(MediaKeys? mediaKeys);
- attribute EventListener onwebkitkeyadded;
- attribute EventListener onwebkitkeyerror;
- attribute EventListener onwebkitkeymessage;
-#endif
- [Conditional=ENCRYPTED_MEDIA|ENCRYPTED_MEDIA_V2] attribute EventListener onwebkitneedkey;
-#if defined(ENABLE_ENCRYPTED_MEDIA_V2) && ENABLE_ENCRYPTED_MEDIA_V2
- [ImplementedAs=keys] readonly attribute MediaKeys webkitKeys;
- [ImplementedAs=setMediaKeys] void webkitSetMediaKeys(MediaKeys mediaKeys);
-#endif
+ [Conditional=VIDEO_TRACK, MayThrowException] TextTrack addTextTrack(DOMString kind, optional DOMString label = "", optional DOMString language = "");
+ [Conditional=VIDEO_TRACK] readonly attribute AudioTrackList audioTracks;
+ [Conditional=VIDEO_TRACK] readonly attribute TextTrackList textTracks;
+ [Conditional=VIDEO_TRACK] readonly attribute VideoTrackList videoTracks;
-#if defined(ENABLE_VIDEO_TRACK) && ENABLE_VIDEO_TRACK
- [RaisesException] TextTrack addTextTrack(DOMString kind, optional DOMString label, optional DOMString language);
- readonly attribute AudioTrackList audioTracks;
- readonly attribute TextTrackList textTracks;
- readonly attribute VideoTrackList videoTracks;
-#endif
+ [Reflect] attribute DOMString mediaGroup;
- [Reflect, TreatNullAs=NullString] attribute DOMString mediaGroup;
- [CustomSetter] attribute MediaController controller;
+ [ImplementedAs=controllerForBindings] attribute MediaController? controller;
-#if !defined(LANGUAGE_GOBJECT) || !LANGUAGE_GOBJECT
[Conditional=MEDIA_SOURCE] VideoPlaybackQuality getVideoPlaybackQuality();
-#endif
- [Conditional=IOS_AIRPLAY] void webkitShowPlaybackTargetPicker();
- [Conditional=IOS_AIRPLAY] readonly attribute boolean webkitCurrentPlaybackTargetIsWireless;
- [Conditional=IOS_AIRPLAY] attribute EventListener onwebkitcurrentplaybacktargetiswirelesschanged;
- [Conditional=IOS_AIRPLAY] attribute EventListener onwebkitplaybacktargetavailabilitychanged;
+ [Conditional=WIRELESS_PLAYBACK_TARGET] void webkitShowPlaybackTargetPicker();
+ [Conditional=WIRELESS_PLAYBACK_TARGET] readonly attribute boolean webkitCurrentPlaybackTargetIsWireless;
};