Chromium Code Reviews| Index: Source/modules/mediarecorder/BlobEvent.idl |
| diff --git a/Source/modules/mediarecorder/BlobEvent.idl b/Source/modules/mediarecorder/BlobEvent.idl |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..0ea6e5dbf2c742891b30a3b52a2454b0580ec21b |
| --- /dev/null |
| +++ b/Source/modules/mediarecorder/BlobEvent.idl |
| @@ -0,0 +1,14 @@ |
| +// Copyright 2015 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +// https://w3c.github.io/mediacapture-record/MediaRecorder.html#blob-event |
| + |
| +[ |
| + // This constructor is not strictly part of the spec but is very useful, see |
| + // https://github.com/w3c/mediacapture-record/issues/11 |
|
Peter Beverloo
2015/09/22 14:03:42
It is, but the spec should be updated to properly
mcasas
2015/09/22 16:18:48
Done.
|
| + Constructor(DOMString type, optional BlobEventInit eventInit) |
|
Peter Beverloo
2015/09/22 14:03:42
RuntimeEnabled=MediaRecorder
mcasas
2015/09/22 16:18:48
Done.
|
| +] |
| +interface BlobEvent : Event { |
| + readonly attribute Blob data; |
| +}; |