| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // https://w3c.github.io/mediacapture-record/MediaRecorder.html#MediaRecorderAPI | 5 // https://w3c.github.io/mediacapture-record/MediaRecorder.html#MediaRecorderAPI |
| 6 | 6 |
| 7 enum RecordingState { "inactive", "recording", "paused" }; | 7 enum RecordingState { "inactive", "recording", "paused" }; |
| 8 | 8 |
| 9 [ | 9 [ |
| 10 ActiveScriptWrappable, |
| 11 ConstructorCallWith=ExecutionContext, |
| 12 Constructor(MediaStream stream, optional MediaRecorderOptions options), |
| 13 DependentLifetime, |
| 10 GarbageCollected, | 14 GarbageCollected, |
| 11 DependentLifetime, | |
| 12 Constructor(MediaStream stream, optional MediaRecorderOptions options), | |
| 13 ConstructorCallWith=ExecutionContext, | |
| 14 RaisesException=Constructor, | 15 RaisesException=Constructor, |
| 15 RuntimeEnabled=MediaRecorder, | 16 RuntimeEnabled=MediaRecorder, |
| 16 ] interface MediaRecorder : EventTarget { | 17 ] interface MediaRecorder : EventTarget { |
| 17 readonly attribute MediaStream stream; | 18 readonly attribute MediaStream stream; |
| 18 readonly attribute DOMString mimeType; | 19 readonly attribute DOMString mimeType; |
| 19 readonly attribute RecordingState state; | 20 readonly attribute RecordingState state; |
| 20 | 21 |
| 21 attribute EventHandler onstart; | 22 attribute EventHandler onstart; |
| 22 attribute EventHandler onstop; | 23 attribute EventHandler onstop; |
| 23 attribute EventHandler ondataavailable; | 24 attribute EventHandler ondataavailable; |
| 24 attribute EventHandler onpause; | 25 attribute EventHandler onpause; |
| 25 attribute EventHandler onresume; | 26 attribute EventHandler onresume; |
| 26 attribute EventHandler onerror; | 27 attribute EventHandler onerror; |
| 27 attribute boolean ignoreMutedMedia; | 28 attribute boolean ignoreMutedMedia; |
| 28 readonly attribute unsigned long videoBitsPerSecond; | 29 readonly attribute unsigned long videoBitsPerSecond; |
| 29 readonly attribute unsigned long audioBitsPerSecond; | 30 readonly attribute unsigned long audioBitsPerSecond; |
| 30 | 31 |
| 31 [RaisesException] void start(optional long timeslice); | 32 [RaisesException] void start(optional long timeslice); |
| 32 [RaisesException] void stop(); | 33 [RaisesException] void stop(); |
| 33 [RaisesException] void pause(); | 34 [RaisesException] void pause(); |
| 34 [RaisesException] void resume(); | 35 [RaisesException] void resume(); |
| 35 [RaisesException] void requestData(); | 36 [RaisesException] void requestData(); |
| 36 | 37 |
| 37 static boolean isTypeSupported(DOMString type); | 38 static boolean isTypeSupported(DOMString type); |
| 38 }; | 39 }; |
| OLD | NEW |