Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(686)

Unified Diff: third_party/WebKit/Source/modules/webaudio/StereoPannerNode.h

Issue 2272683003: Remove redundant definition of Spatializer abstract class (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix reference URL Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/modules/webaudio/StereoPannerNode.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/webaudio/StereoPannerNode.h
diff --git a/third_party/WebKit/Source/modules/webaudio/StereoPannerNode.h b/third_party/WebKit/Source/modules/webaudio/StereoPannerNode.h
index c450d47625b7cc27a104ab1749473f4c512e3349..7f418da3a8635ccd6d9ebbc7529c59197f268265 100644
--- a/third_party/WebKit/Source/modules/webaudio/StereoPannerNode.h
+++ b/third_party/WebKit/Source/modules/webaudio/StereoPannerNode.h
@@ -9,7 +9,7 @@
#include "modules/webaudio/AudioNode.h"
#include "modules/webaudio/AudioParam.h"
#include "platform/audio/AudioBus.h"
-#include "platform/audio/Spatializer.h"
+#include "platform/audio/StereoPanner.h"
#include <memory>
namespace blink {
@@ -32,7 +32,7 @@ public:
private:
StereoPannerHandler(AudioNode&, float sampleRate, AudioParamHandler& pan);
- std::unique_ptr<Spatializer> m_stereoPanner;
+ std::unique_ptr<StereoPanner> m_stereoPanner;
RefPtr<AudioParamHandler> m_pan;
AudioFloatArray m_sampleAccuratePanValues;
« no previous file with comments | « no previous file | third_party/WebKit/Source/modules/webaudio/StereoPannerNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698