| 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 8c0e99a2d608764bb10fe63922399a4c2bf37176..ca484863958c8b70f9ba754a57702524fb52278e 100644
|
| --- a/third_party/WebKit/Source/modules/webaudio/OscillatorNode.cpp
|
| +++ b/third_party/WebKit/Source/modules/webaudio/OscillatorNode.cpp
|
| @@ -49,8 +49,8 @@ OscillatorHandler::OscillatorHandler(AudioNode& node,
|
| m_detune(detune),
|
| m_firstRender(true),
|
| m_virtualReadIndex(0),
|
| - m_phaseIncrements(ProcessingSizeInFrames),
|
| - m_detuneValues(ProcessingSizeInFrames) {
|
| + m_phaseIncrements(AudioUtilities::kRenderQuantumFrames),
|
| + m_detuneValues(AudioUtilities::kRenderQuantumFrames) {
|
| // Sets up default wavetable.
|
| setType(m_type);
|
|
|
|
|