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

Unified Diff: third_party/WebKit/Source/modules/webaudio/OscillatorNode.cpp

Issue 2387263004: Manually remove many instances of a comma quirk arising from the reformat. (Closed)
Patch Set: merge with master; thakis nit Created 4 years, 2 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/OscillatorNode.cpp
diff --git a/third_party/WebKit/Source/modules/webaudio/OscillatorNode.cpp b/third_party/WebKit/Source/modules/webaudio/OscillatorNode.cpp
index ffab45ddf0134e137d3b83b9d65e4705421baf1d..8c0e99a2d608764bb10fe63922399a4c2bf37176 100644
--- a/third_party/WebKit/Source/modules/webaudio/OscillatorNode.cpp
+++ b/third_party/WebKit/Source/modules/webaudio/OscillatorNode.cpp
@@ -350,16 +350,14 @@ bool OscillatorHandler::propagatesSilence() const {
// ----------------------------------------------------------------
OscillatorNode::OscillatorNode(BaseAudioContext& context)
- : AudioScheduledSourceNode(context)
+ : AudioScheduledSourceNode(context),
// Use musical pitch standard A440 as a default.
- ,
m_frequency(AudioParam::create(context,
ParamTypeOscillatorFrequency,
440,
-context.sampleRate() / 2,
- context.sampleRate() / 2))
+ context.sampleRate() / 2)),
// Default to no detuning.
- ,
m_detune(AudioParam::create(context, ParamTypeOscillatorDetune, 0)) {
setHandler(OscillatorHandler::create(*this, context.sampleRate(),
m_frequency->handler(),

Powered by Google App Engine
This is Rietveld 408576698