Bug 1267985 - include nsContentUtils.h and nsIScriptError.h; r=gerald draft
authorKaku Kuo <tkuo@mozilla.com>
Wed, 27 Apr 2016 19:03:44 +0800
changeset 357140 27c2d8c4f9c0ebac5d0c9ce339edd53f632811d0
parent 357139 9372a674400d060b2ed701ad112d39861dbc9e22
child 357707 ab63d785f670724b942468d31a6a6d97d8c0db70
push id16706
push usertkuo@mozilla.com
push dateThu, 28 Apr 2016 02:46:39 +0000
reviewersgerald
bugs1267985
milestone49.0a1
Bug 1267985 - include nsContentUtils.h and nsIScriptError.h; r=gerald MozReview-Commit-ID: JmCUzGj1kBX
dom/media/DecoderDoctorDiagnostics.cpp
--- a/dom/media/DecoderDoctorDiagnostics.cpp
+++ b/dom/media/DecoderDoctorDiagnostics.cpp
@@ -4,19 +4,21 @@
  * 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/. */
 
 #include "DecoderDoctorDiagnostics.h"
 
 #include "mozilla/dom/DecoderDoctorNotificationBinding.h"
 #include "mozilla/Logging.h"
 #include "mozilla/Preferences.h"
+#include "nsContentUtils.h"
 #include "nsGkAtoms.h"
 #include "nsIDocument.h"
 #include "nsIObserverService.h"
+#include "nsIScriptError.h"
 #include "nsITimer.h"
 #include "nsIWeakReference.h"
 #include "nsPluginHost.h"
 
 static mozilla::LazyLogModule sDecoderDoctorLog("DecoderDoctor");
 #define DD_LOG(level, arg, ...) MOZ_LOG(sDecoderDoctorLog, level, (arg, ##__VA_ARGS__))
 #define DD_DEBUG(arg, ...) DD_LOG(mozilla::LogLevel::Debug, arg, ##__VA_ARGS__)
 #define DD_INFO(arg, ...) DD_LOG(mozilla::LogLevel::Info, arg, ##__VA_ARGS__)