Commit 096edb6c authored by Raymond Toy's avatar Raymond Toy Committed by Commit Bot

Rename iirdsp_kernel.* to iir_dsp_kernel.*

This makes it consistent with other files.  No other changes were
made.

Bug: 954519
Change-Id: I2b737e6c639caba48ad8de974832119691adfbf2
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1575726Reviewed-by: default avatarHongchan Choi <hongchan@chromium.org>
Commit-Queue: Raymond Toy <rtoy@chromium.org>
Cr-Commit-Position: refs/heads/master@{#652907}
parent 90631306
...@@ -92,12 +92,12 @@ blink_modules_sources("webaudio") { ...@@ -92,12 +92,12 @@ blink_modules_sources("webaudio") {
"dynamics_compressor_node.h", "dynamics_compressor_node.h",
"gain_node.cc", "gain_node.cc",
"gain_node.h", "gain_node.h",
"iir_dsp_kernel.cc",
"iir_dsp_kernel.h",
"iir_filter_node.cc", "iir_filter_node.cc",
"iir_filter_node.h", "iir_filter_node.h",
"iir_processor.cc", "iir_processor.cc",
"iir_processor.h", "iir_processor.h",
"iirdsp_kernel.cc",
"iirdsp_kernel.h",
"inspector_web_audio_agent.cc", "inspector_web_audio_agent.cc",
"inspector_web_audio_agent.h", "inspector_web_audio_agent.h",
"media_element_audio_source_node.cc", "media_element_audio_source_node.cc",
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
#include "third_party/blink/renderer/modules/webaudio/iirdsp_kernel.h" #include "third_party/blink/renderer/modules/webaudio/iir_dsp_kernel.h"
#include "third_party/blink/renderer/platform/wtf/math_extras.h" #include "third_party/blink/renderer/platform/wtf/math_extras.h"
......
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef THIRD_PARTY_BLINK_RENDERER_MODULES_WEBAUDIO_IIRDSP_KERNEL_H_ #ifndef THIRD_PARTY_BLINK_RENDERER_MODULES_WEBAUDIO_IIR_DSP_KERNEL_H_
#define THIRD_PARTY_BLINK_RENDERER_MODULES_WEBAUDIO_IIRDSP_KERNEL_H_ #define THIRD_PARTY_BLINK_RENDERER_MODULES_WEBAUDIO_IIR_DSP_KERNEL_H_
#include "third_party/blink/renderer/modules/webaudio/iir_processor.h" #include "third_party/blink/renderer/modules/webaudio/iir_processor.h"
#include "third_party/blink/renderer/platform/audio/audio_dsp_kernel.h" #include "third_party/blink/renderer/platform/audio/audio_dsp_kernel.h"
...@@ -43,4 +43,4 @@ class IIRDSPKernel final : public AudioDSPKernel { ...@@ -43,4 +43,4 @@ class IIRDSPKernel final : public AudioDSPKernel {
} // namespace blink } // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_MODULES_WEBAUDIO_IIRDSP_KERNEL_H_ #endif // THIRD_PARTY_BLINK_RENDERER_MODULES_WEBAUDIO_IIR_DSP_KERNEL_H_
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
#include "third_party/blink/renderer/modules/webaudio/iir_processor.h" #include "third_party/blink/renderer/modules/webaudio/iir_processor.h"
#include <memory> #include <memory>
#include "third_party/blink/renderer/modules/webaudio/iirdsp_kernel.h" #include "third_party/blink/renderer/modules/webaudio/iir_dsp_kernel.h"
namespace blink { namespace blink {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment