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

Unified Diff: modules/mediastream/MediaStream.idl

Issue 1660113002: Updated to Chrome 45 (2454) moved from SVN to git. Base URL: https://github.com/dart-lang/webcore.git@roll_45
Patch Set: Created 4 years, 11 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/mediastream/MediaDevices.idl ('k') | modules/mediastream/MediaStreamEvent.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: modules/mediastream/MediaStream.idl
diff --git a/modules/mediastream/MediaStream.idl b/modules/mediastream/MediaStream.idl
index 14cf0f51a97c7a7bdc51453c5c807c758212336a..1a042b7cf0c2f2e187c7ae5202c363968d7833d0 100644
--- a/modules/mediastream/MediaStream.idl
+++ b/modules/mediastream/MediaStream.idl
@@ -33,7 +33,7 @@
NoInterfaceObject,
] interface MediaStream : EventTarget {
// DEPRECATED
- [MeasureAs=MediaStreamLabel] readonly attribute DOMString label;
+ [DeprecateAs=MediaStreamLabel] readonly attribute DOMString label;
readonly attribute DOMString id;
@@ -46,12 +46,18 @@
MediaStreamTrack getTrackById(DOMString trackId);
[CallWith=ExecutionContext] MediaStream clone();
// DEPRECATED
- [MeasureAs=MediaStreamEnded] readonly attribute boolean ended;
+ [DeprecateAs=MediaStreamEnded] readonly attribute boolean ended;
+
+ readonly attribute boolean active;
// DEPRECATED
- [MeasureAs=MediaStreamStop] void stop();
+ [DeprecateAs=MediaStreamStop] void stop();
+ attribute EventHandler onactive;
+ attribute EventHandler oninactive;
+ // DEPRECATED
attribute EventHandler onended;
+
attribute EventHandler onaddtrack;
attribute EventHandler onremovetrack;
};
« no previous file with comments | « modules/mediastream/MediaDevices.idl ('k') | modules/mediastream/MediaStreamEvent.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698