| Index: third_party/WebKit/Source/modules/webaudio/OfflineAudioDestinationNode.cpp
|
| diff --git a/third_party/WebKit/Source/modules/webaudio/OfflineAudioDestinationNode.cpp b/third_party/WebKit/Source/modules/webaudio/OfflineAudioDestinationNode.cpp
|
| index a0e085f13dbf05d5fd251e4c00baf0ab5e818e22..21be406a871f9da078d91bac36b03b5ea7712ec5 100644
|
| --- a/third_party/WebKit/Source/modules/webaudio/OfflineAudioDestinationNode.cpp
|
| +++ b/third_party/WebKit/Source/modules/webaudio/OfflineAudioDestinationNode.cpp
|
| @@ -91,7 +91,7 @@ void OfflineAudioDestinationHandler::startRendering()
|
| if (!m_startedRendering) {
|
| m_startedRendering = true;
|
| m_renderThread = adoptPtr(Platform::current()->createThread("Offline Audio Renderer"));
|
| - m_renderThread->taskRunner()->postTask(FROM_HERE, new Task(threadSafeBind(&OfflineAudioDestinationHandler::offlineRender, PassRefPtr<OfflineAudioDestinationHandler>(this))));
|
| + m_renderThread->taskRunner()->postTask(BLINK_FROM_HERE, new Task(threadSafeBind(&OfflineAudioDestinationHandler::offlineRender, PassRefPtr<OfflineAudioDestinationHandler>(this))));
|
| }
|
| }
|
|
|
| @@ -152,7 +152,7 @@ void OfflineAudioDestinationHandler::offlineRenderInternal()
|
|
|
| // Our work is done. Let the AbstractAudioContext know.
|
| if (context()->executionContext())
|
| - context()->executionContext()->postTask(FROM_HERE, createCrossThreadTask(&OfflineAudioDestinationHandler::notifyComplete, PassRefPtr<OfflineAudioDestinationHandler>(this)));
|
| + context()->executionContext()->postTask(BLINK_FROM_HERE, createCrossThreadTask(&OfflineAudioDestinationHandler::notifyComplete, PassRefPtr<OfflineAudioDestinationHandler>(this)));
|
| }
|
|
|
| void OfflineAudioDestinationHandler::notifyComplete()
|
|
|