summaryrefslogtreecommitdiffstats
path: root/WebCore/platform/audio/Panner.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/platform/audio/Panner.cpp')
-rw-r--r--WebCore/platform/audio/Panner.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/WebCore/platform/audio/Panner.cpp b/WebCore/platform/audio/Panner.cpp
index a300786..5e8efca 100644
--- a/WebCore/platform/audio/Panner.cpp
+++ b/WebCore/platform/audio/Panner.cpp
@@ -34,7 +34,6 @@
#include "EqualPowerPanner.h"
#include "HRTFPanner.h"
-#include "PassThroughPanner.h"
#include <wtf/OwnPtr.h>
namespace WebCore {
@@ -52,10 +51,6 @@ PassOwnPtr<Panner> Panner::create(PanningModel model, double sampleRate)
panner = adoptPtr(new HRTFPanner(sampleRate));
break;
- case PanningModelPassthrough:
- panner = adoptPtr(new PassThroughPanner());
- break;
-
// FIXME: sound field panning is not yet implemented...
case PanningModelSoundField:
default: