Bug 1247056 - New DecoderDoctorNotificationType - r=smaug draft
authorGerald Squelart <gsquelart@mozilla.com>
Wed, 07 Sep 2016 22:48:06 -0700
changeset 417922 269f30b363e6d9eb5b892af74929288f07fc5b12
parent 417921 e520e32bd42066b1f2c749fddd7b2ee790c6944f
child 417923 b557992bb78c0d6c776adf83740bbc07b831c898
push id30524
push usergsquelart@mozilla.com
push dateTue, 27 Sep 2016 09:30:55 +0000
reviewerssmaug
bugs1247056
milestone52.0a1
Bug 1247056 - New DecoderDoctorNotificationType - r=smaug MozReview-Commit-ID: H5EuLPNRlhu
dom/webidl/DecoderDoctorNotification.webidl
--- a/dom/webidl/DecoderDoctorNotification.webidl
+++ b/dom/webidl/DecoderDoctorNotification.webidl
@@ -2,17 +2,18 @@
 /* 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/.
  */
 
 enum DecoderDoctorNotificationType {
   "cannot-play",
   "platform-decoder-not-found",
-  "can-play-but-some-missing-decoders"
+  "can-play-but-some-missing-decoders",
+  "cannot-initialize-pulseaudio",
 };
 
 dictionary DecoderDoctorNotification {
   required DecoderDoctorNotificationType type;
   // True when the issue has been solved.
   required boolean isSolved;
   // Key from dom.properties, used for telemetry and prefs.
   required DOMString decoderDoctorReportId;