| Index: third_party/WebKit/Source/modules/webaudio/BaseAudioContext.cpp
|
| diff --git a/third_party/WebKit/Source/modules/webaudio/BaseAudioContext.cpp b/third_party/WebKit/Source/modules/webaudio/BaseAudioContext.cpp
|
| index a3ea06ea0a2fbfce1d28190fe5b9839619cc4f43..8d0586656b6242fd9ce9d95b8a45c0f345adf531 100644
|
| --- a/third_party/WebKit/Source/modules/webaudio/BaseAudioContext.cpp
|
| +++ b/third_party/WebKit/Source/modules/webaudio/BaseAudioContext.cpp
|
| @@ -538,9 +538,7 @@ PeriodicWave* BaseAudioContext::createPeriodicWave(
|
| ExceptionState& exception_state) {
|
| DCHECK(IsMainThread());
|
|
|
| - bool disable = options.hasDisableNormalization()
|
| - ? options.disableNormalization()
|
| - : false;
|
| + bool disable = options.disableNormalization();
|
|
|
| return PeriodicWave::Create(*this, real, imag, disable, exception_state);
|
| }
|
|
|