Index: Source/core/html/MediaController.idl |
diff --git a/Source/core/html/MediaController.idl b/Source/core/html/MediaController.idl |
index 54c415380b73a5ab11c2e2e8192ba30777933854..851670522aa33d939a08b960f22ef419e997cb18 100644 |
--- a/Source/core/html/MediaController.idl |
+++ b/Source/core/html/MediaController.idl |
@@ -26,9 +26,8 @@ |
[ |
EnabledAtRuntime=media, |
Constructor, |
- ConstructorCallWith=ScriptExecutionContext, |
- EventTarget |
-] interface MediaController { |
+ ConstructorCallWith=ScriptExecutionContext |
+] interface MediaController : EventTarget { |
readonly attribute TimeRanges buffered; |
readonly attribute TimeRanges seekable; |
@@ -47,13 +46,4 @@ |
[SetterRaisesException] attribute double volume; |
attribute boolean muted; |
- |
- // EventTarget interface |
- void addEventListener(DOMString type, |
- EventListener listener, |
- optional boolean useCapture); |
- void removeEventListener(DOMString type, |
- EventListener listener, |
- optional boolean useCapture); |
- [RaisesException] boolean dispatchEvent(Event evt); |
}; |