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

Unified Diff: core/html/HTMLMediaElement.idl

Issue 581453002: Dartium Roll 38 roll (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Sync'd w/ r 182210 Created 6 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « core/html/HTMLMarqueeElement.idl ('k') | core/html/HTMLMenuElement.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/html/HTMLMediaElement.idl
diff --git a/core/html/HTMLMediaElement.idl b/core/html/HTMLMediaElement.idl
index 3d87a591ba3918c6f558d978f50760c41452c5bb..aa9d0405be6540ac997516ab4536c35aaef5aedf 100644
--- a/core/html/HTMLMediaElement.idl
+++ b/core/html/HTMLMediaElement.idl
@@ -30,11 +30,11 @@
] interface HTMLMediaElement : HTMLElement {
// error state
- [TypeChecking=Interface|Nullable] readonly attribute MediaError? error;
+ readonly attribute MediaError? error;
// network state
- [Reflect, URL, LogActivity=SetterOnly] attribute DOMString src;
- [URL, LogActivity=SetterOnly] readonly attribute DOMString currentSrc;
+ [Reflect, URL] attribute DOMString src;
+ [URL] readonly attribute DOMString currentSrc;
[Reflect, ReflectOnly="anonymous"|"use-credentials", ReflectEmpty="anonymous", ReflectInvalid="anonymous"] attribute DOMString crossOrigin;
const unsigned short NETWORK_EMPTY = 0;
@@ -46,7 +46,7 @@
readonly attribute TimeRanges buffered;
void load();
- DOMString canPlayType(DOMString type, [Default=Undefined, TreatNullAs=NullString, TreatUndefinedAs=NullString] optional DOMString keySystem);
+ DOMString canPlayType(DOMString type, [Default=Undefined, TreatUndefinedAs=NullString] optional DOMString? keySystem);
// ready state
const unsigned short HAVE_NOTHING = 0;
@@ -73,10 +73,10 @@
// media controller
[RuntimeEnabled=MediaController, Reflect] attribute DOMString mediaGroup;
- [RuntimeEnabled=MediaController, TypeChecking=Interface|Nullable] attribute MediaController? controller;
+ [RuntimeEnabled=MediaController, TypeChecking=Interface] attribute MediaController? controller;
// controls
- attribute boolean controls;
+ [Reflect] attribute boolean controls;
[RaisesException=Setter] attribute double volume;
attribute boolean muted;
[Reflect=muted] attribute boolean defaultMuted;
« no previous file with comments | « core/html/HTMLMarqueeElement.idl ('k') | core/html/HTMLMenuElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698