| Index: third_party/WebKit/Source/modules/webaudio/BaseAudioContext.h
|
| diff --git a/third_party/WebKit/Source/modules/webaudio/BaseAudioContext.h b/third_party/WebKit/Source/modules/webaudio/BaseAudioContext.h
|
| index b3011004d5c9533d7dff2408cd0bfa44ea631ac0..30b9be39a1e7ecdf2e2c4fa6de1f0d67a8412299 100644
|
| --- a/third_party/WebKit/Source/modules/webaudio/BaseAudioContext.h
|
| +++ b/third_party/WebKit/Source/modules/webaudio/BaseAudioContext.h
|
| @@ -126,10 +126,9 @@ class MODULES_EXPORT BaseAudioContext
|
| size_t currentSampleFrame() const {
|
| // TODO: What is the correct value for the current frame if the destination
|
| // node has gone away? 0 is a valid frame.
|
| - return m_destinationNode
|
| - ? m_destinationNode->audioDestinationHandler()
|
| - .currentSampleFrame()
|
| - : 0;
|
| + return m_destinationNode ? m_destinationNode->audioDestinationHandler()
|
| + .currentSampleFrame()
|
| + : 0;
|
| }
|
|
|
| double currentTime() const {
|
|
|