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

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

Issue 1951903003: Assert destination handler exists in AudioParam (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 | « no previous file | third_party/WebKit/Source/modules/webaudio/AudioParam.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/webaudio/AudioParam.h
diff --git a/third_party/WebKit/Source/modules/webaudio/AudioParam.h b/third_party/WebKit/Source/modules/webaudio/AudioParam.h
index 42bffe793b960d2e3a94a66092b39c76a47f341a..dd000e52002d243411e779fa44af09c838e23993 100644
--- a/third_party/WebKit/Source/modules/webaudio/AudioParam.h
+++ b/third_party/WebKit/Source/modules/webaudio/AudioParam.h
@@ -128,14 +128,7 @@ public:
float intrinsicValue() const { return noBarrierLoad(&m_intrinsicValue); }
private:
- AudioParamHandler(AbstractAudioContext& context, AudioParamType paramType, double defaultValue)
- : AudioSummingJunction(context.deferredTaskHandler())
- , m_paramType(paramType)
- , m_intrinsicValue(defaultValue)
- , m_defaultValue(defaultValue)
- , m_smoothedValue(defaultValue)
- , m_destinationHandler(context.destination()->audioDestinationHandler())
- { }
+ AudioParamHandler(AbstractAudioContext&, AudioParamType, double defaultValue);
// sampleAccurate corresponds to a-rate (audio rate) vs. k-rate in the Web Audio specification.
void calculateFinalValues(float* values, unsigned numberOfValues, bool sampleAccurate);
« no previous file with comments | « no previous file | third_party/WebKit/Source/modules/webaudio/AudioParam.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698