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

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

Issue 1214463003: Split "Online" and "Offline" AudioContext processing (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Bring to ToT Created 5 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
« no previous file with comments | « Source/modules/webaudio/StereoPannerNodeTest.cpp ('k') | Source/modules/webaudio/WaveShaperNode.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webaudio/WaveShaperNode.h
diff --git a/Source/modules/webaudio/WaveShaperNode.h b/Source/modules/webaudio/WaveShaperNode.h
index e87da39a6ce40abab1fd72946e364d660ec90f49..fb05ea34eb6a41637dfc63d5ace8f684f9e01143 100644
--- a/Source/modules/webaudio/WaveShaperNode.h
+++ b/Source/modules/webaudio/WaveShaperNode.h
@@ -31,12 +31,13 @@
namespace blink {
+class AbstractAudioContext;
class ExceptionState;
class WaveShaperNode final : public AudioNode {
DEFINE_WRAPPERTYPEINFO();
public:
- static WaveShaperNode* create(AudioContext& context)
+ static WaveShaperNode* create(AbstractAudioContext& context)
{
return new WaveShaperNode(context);
}
@@ -49,7 +50,7 @@ public:
String oversample() const;
private:
- explicit WaveShaperNode(AudioContext&);
+ explicit WaveShaperNode(AbstractAudioContext&);
WaveShaperProcessor* waveShaperProcessor() const;
};
« no previous file with comments | « Source/modules/webaudio/StereoPannerNodeTest.cpp ('k') | Source/modules/webaudio/WaveShaperNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698