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

Unified Diff: Source/modules/webaudio/AnalyserNode.cpp

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/AnalyserNode.h ('k') | Source/modules/webaudio/AudioBasicInspectorNode.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webaudio/AnalyserNode.cpp
diff --git a/Source/modules/webaudio/AnalyserNode.cpp b/Source/modules/webaudio/AnalyserNode.cpp
index c43dc7f5bf40643048738d85d5a36f1d0fa56a11..dd35a3a2236d4df1af3efdd3bb401560138e726d 100644
--- a/Source/modules/webaudio/AnalyserNode.cpp
+++ b/Source/modules/webaudio/AnalyserNode.cpp
@@ -116,13 +116,13 @@ void AnalyserHandler::setSmoothingTimeConstant(double k, ExceptionState& excepti
// ----------------------------------------------------------------
-AnalyserNode::AnalyserNode(AudioContext& context, float sampleRate)
+AnalyserNode::AnalyserNode(AbstractAudioContext& context, float sampleRate)
: AudioBasicInspectorNode(context)
{
setHandler(AnalyserHandler::create(*this, sampleRate));
}
-AnalyserNode* AnalyserNode::create(AudioContext& context, float sampleRate)
+AnalyserNode* AnalyserNode::create(AbstractAudioContext& context, float sampleRate)
{
return new AnalyserNode(context, sampleRate);
}
« no previous file with comments | « Source/modules/webaudio/AnalyserNode.h ('k') | Source/modules/webaudio/AudioBasicInspectorNode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698