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

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

Issue 2103043007: Rename AbstractAudioContext to BaseAudioContext (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use ASSERT(isGraphOwner()) instead of DCHECK Created 4 years, 5 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
Index: third_party/WebKit/Source/modules/webaudio/IIRFilterNode.h
diff --git a/third_party/WebKit/Source/modules/webaudio/IIRFilterNode.h b/third_party/WebKit/Source/modules/webaudio/IIRFilterNode.h
index 761e7e3ffa9d29b06aa20aa6249ad6bf0e5cea27..1a7f4f3af4a7dfc8e6e3759e2ee0488d0421b1b0 100644
--- a/third_party/WebKit/Source/modules/webaudio/IIRFilterNode.h
+++ b/third_party/WebKit/Source/modules/webaudio/IIRFilterNode.h
@@ -11,14 +11,14 @@
namespace blink {
-class AbstractAudioContext;
+class BaseAudioContext;
class ExceptionState;
class IIRFilterNode : public AudioNode {
DEFINE_WRAPPERTYPEINFO();
public:
static IIRFilterNode* create(
- AbstractAudioContext&,
+ BaseAudioContext&,
const Vector<double> feedforward,
const Vector<double> feedback,
ExceptionState&);
@@ -30,7 +30,7 @@ public:
void getFrequencyResponse(const DOMFloat32Array* frequencyHz, DOMFloat32Array* magResponse, DOMFloat32Array* phaseResponse, ExceptionState&);
private:
- IIRFilterNode(AbstractAudioContext&, const Vector<double> denominator, const Vector<double> numerator);
+ IIRFilterNode(BaseAudioContext&, const Vector<double> denominator, const Vector<double> numerator);
IIRProcessor* iirProcessor() const;
};
« no previous file with comments | « third_party/WebKit/Source/modules/webaudio/GainNode.cpp ('k') | third_party/WebKit/Source/modules/webaudio/IIRFilterNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698