Bug 1275856 - Add MediaRecorderErrorEvent webidl files and update moz.build. r?jib,smaug draft
authorBryce Van Dyk <bvandyk@mozilla.com>
Tue, 25 Jul 2017 08:46:59 +1200
changeset 643701 d7b0ede6e3cb8763b6e07bad5c8abe570e74367c
parent 641249 fe6609d22dfdd710b11e3ac7773aff89f7a8d12c
child 643702 ef203841e683c02b798f2f1741aebb1267c0d5a8
push id73193
push userbvandyk@mozilla.com
push dateThu, 10 Aug 2017 02:35:51 +0000
reviewersjib, smaug
bugs1275856
milestone57.0a1
Bug 1275856 - Add MediaRecorderErrorEvent webidl files and update moz.build. r?jib,smaug This adds the webidl definition of the MediaRecorderErrorEvent given in the spec. It also updates the build system to give us generated C++ code for this event. MozReview-Commit-ID: Bi1f0tD9iUj
dom/webidl/MediaRecorderErrorEvent.webidl
dom/webidl/moz.build
new file mode 100644
--- /dev/null
+++ b/dom/webidl/MediaRecorderErrorEvent.webidl
@@ -0,0 +1,21 @@
+/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this file,
+ * You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * The origin of this IDL file is
+ * https://w3c.github.io/mediacapture-record/
+ *
+ * Copyright © 2017 W3C® (MIT, ERCIM, Keio, Beihang). W3C liability, trademark
+ * and document use rules apply.
+ */
+
+dictionary MediaRecorderErrorEventInit : EventInit {
+  required DOMException error;
+};
+
+[Exposed=Window,
+  Constructor(DOMString type, MediaRecorderErrorEventInit eventInitDict)]
+interface MediaRecorderErrorEvent : Event {
+  [SameObject] readonly attribute DOMException error;
+};
\ No newline at end of file
--- a/dom/webidl/moz.build
+++ b/dom/webidl/moz.build
@@ -1075,16 +1075,17 @@ GENERATED_EVENTS_WEBIDL_FILES = [
     'GamepadAxisMoveEvent.webidl',
     'GamepadButtonEvent.webidl',
     'GamepadEvent.webidl',
     'GroupedHistoryEvent.webidl',
     'HashChangeEvent.webidl',
     'HiddenPluginEvent.webidl',
     'ImageCaptureErrorEvent.webidl',
     'MediaQueryListEvent.webidl',
+    'MediaRecorderErrorEvent.webidl',
     'MediaStreamEvent.webidl',
     'MediaStreamTrackEvent.webidl',
     'OfflineAudioCompletionEvent.webidl',
     'PageTransitionEvent.webidl',
     'PerformanceEntryEvent.webidl',
     'PluginCrashedEvent.webidl',
     'PopStateEvent.webidl',
     'PopupBlockedEvent.webidl',