| Index: third_party/WebKit/Source/modules/webaudio/ConstantSourceNode.cpp
 | 
| diff --git a/third_party/WebKit/Source/modules/webaudio/ConstantSourceNode.cpp b/third_party/WebKit/Source/modules/webaudio/ConstantSourceNode.cpp
 | 
| index 7af4e078a0cf82eb82c18caf72a6fc1de0bbe333..821419d0125c9f07afd506125e19d310c054946f 100644
 | 
| --- a/third_party/WebKit/Source/modules/webaudio/ConstantSourceNode.cpp
 | 
| +++ b/third_party/WebKit/Source/modules/webaudio/ConstantSourceNode.cpp
 | 
| @@ -21,7 +21,7 @@ ConstantSourceHandler::ConstantSourceHandler(AudioNode& node,
 | 
|                                               AudioParamHandler& offset)
 | 
|      : AudioScheduledSourceHandler(NodeTypeConstantSource, node, sampleRate),
 | 
|        m_offset(offset),
 | 
| -      m_sampleAccurateValues(ProcessingSizeInFrames) {
 | 
| +      m_sampleAccurateValues(AudioUtilities::kRenderQuantumFrames) {
 | 
|    // A ConstantSource is always mono.
 | 
|    addOutput(1);
 | 
|  
 | 
| 
 |