Bug 1308432 - Add missing includes to PannerNode.h and PannerNode.cpp; r?padenot draft
authorDan Minor <dminor@mozilla.com>
Thu, 13 Oct 2016 10:41:24 -0400
changeset 427079 2c3f1e5a382a3317d8d842428593700530e65dbb
parent 426483 01ab78dd98805e150b0311cce2351d5b408f3001
child 427080 643d4b0dfe1d3e391c46d622496acab34e39d2f6
push id32907
push userdminor@mozilla.com
push dateWed, 19 Oct 2016 17:06:37 +0000
reviewerspadenot
bugs1308432
milestone52.0a1
Bug 1308432 - Add missing includes to PannerNode.h and PannerNode.cpp; r?padenot The missing includes were hidden due to the unified build. MozReview-Commit-ID: 5M3YnyIOW8C
dom/media/webaudio/PannerNode.cpp
dom/media/webaudio/PannerNode.h
--- a/dom/media/webaudio/PannerNode.cpp
+++ b/dom/media/webaudio/PannerNode.cpp
@@ -1,15 +1,17 @@
 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
 /* vim:set ts=2 sw=2 sts=2 et cindent: */
 /* 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/. */
 
 #include "PannerNode.h"
+#include "AlignmentUtils.h"
+#include "AudioDestinationNode.h"
 #include "AudioNodeEngine.h"
 #include "AudioNodeStream.h"
 #include "AudioListener.h"
 #include "PanningUtils.h"
 #include "AudioBufferSourceNode.h"
 #include "PlayingRefChangeHandler.h"
 #include "blink/HRTFPanner.h"
 #include "blink/HRTFDatabaseLoader.h"
--- a/dom/media/webaudio/PannerNode.h
+++ b/dom/media/webaudio/PannerNode.h
@@ -3,20 +3,20 @@
 /* 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/. */
 
 #ifndef PannerNode_h_
 #define PannerNode_h_
 
 #include "AudioNode.h"
+#include "AudioParam.h"
 #include "mozilla/dom/PannerNodeBinding.h"
 #include "ThreeDPoint.h"
 #include "mozilla/WeakPtr.h"
-#include "WebAudioUtils.h"
 #include <limits>
 #include <set>
 
 namespace mozilla {
 namespace dom {
 
 class AudioContext;
 class AudioBufferSourceNode;