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

Unified Diff: modules/mediasource/MediaSource.idl

Issue 19605006: Roll IDL to multivm@1316 (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Created 7 years, 5 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 | « modules/mediasource/DOMWindowMediaSource.idl ('k') | modules/mediasource/SourceBuffer.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: modules/mediasource/MediaSource.idl
diff --git a/modules/mediasource/WebKitMediaSource.idl b/modules/mediasource/MediaSource.idl
similarity index 83%
copy from modules/mediasource/WebKitMediaSource.idl
copy to modules/mediasource/MediaSource.idl
index 573548b1fd2527d0fafdb51debdff885a5e14ba0..d0b407dacc56122c130338be2e158733d0269a35 100644
--- a/modules/mediasource/WebKitMediaSource.idl
+++ b/modules/mediasource/MediaSource.idl
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2012 Google Inc. All rights reserved.
+ * Copyright (C) 2013 Google Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
@@ -29,23 +29,22 @@
*/
[
- NoInterfaceObject,
- EnabledAtRuntime=webKitMediaSource,
+ EnabledAtRuntime=mediaSource,
ActiveDOMObject,
EventTarget,
Constructor,
- CallWith=ScriptExecutionContext
-] interface WebKitMediaSource {
+ ConstructorCallWith=ScriptExecutionContext
+] interface MediaSource {
// All the source buffers created by this object.
- readonly attribute WebKitSourceBufferList sourceBuffers;
+ readonly attribute SourceBufferList sourceBuffers;
// Subset of sourceBuffers that provide data for the selected/enabled tracks.
- readonly attribute WebKitSourceBufferList activeSourceBuffers;
+ readonly attribute SourceBufferList activeSourceBuffers;
[SetterRaisesException] attribute double duration;
- [RaisesException] WebKitSourceBuffer addSourceBuffer(DOMString type);
- [RaisesException] void removeSourceBuffer(WebKitSourceBuffer buffer);
+ [RaisesException] SourceBuffer addSourceBuffer(DOMString type);
+ [RaisesException] void removeSourceBuffer(SourceBuffer buffer);
readonly attribute DOMString readyState;
@@ -62,4 +61,3 @@
optional boolean useCapture);
[RaisesException] boolean dispatchEvent(Event event);
};
-
« no previous file with comments | « modules/mediasource/DOMWindowMediaSource.idl ('k') | modules/mediasource/SourceBuffer.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698