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

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

Issue 1865583002: Implement BaseAudioContext (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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/WaveShaperNode.h
diff --git a/third_party/WebKit/Source/modules/webaudio/WaveShaperNode.h b/third_party/WebKit/Source/modules/webaudio/WaveShaperNode.h
index 740af6d67b632e184cc21977797303c09effa594..65334e50ad811601d59a8f73c9a2862dbc07a694 100644
--- a/third_party/WebKit/Source/modules/webaudio/WaveShaperNode.h
+++ b/third_party/WebKit/Source/modules/webaudio/WaveShaperNode.h
@@ -31,13 +31,13 @@
namespace blink {
-class AbstractAudioContext;
+class BaseAudioContext;
class ExceptionState;
class WaveShaperNode final : public AudioNode {
DEFINE_WRAPPERTYPEINFO();
public:
- static WaveShaperNode* create(AbstractAudioContext& context)
+ static WaveShaperNode* create(BaseAudioContext& context)
{
return new WaveShaperNode(context);
}
@@ -50,7 +50,7 @@ public:
String oversample() const;
private:
- explicit WaveShaperNode(AbstractAudioContext&);
+ explicit WaveShaperNode(BaseAudioContext&);
WaveShaperProcessor* getWaveShaperProcessor() const;
};

Powered by Google App Engine
This is Rietveld 408576698