Index: third_party/WebKit/Source/web/WebEmbeddedWorkerImpl.cpp |
diff --git a/third_party/WebKit/Source/web/WebEmbeddedWorkerImpl.cpp b/third_party/WebKit/Source/web/WebEmbeddedWorkerImpl.cpp |
index bddbc3e83122a6485bb6c9ce8e23778b36e0a8c2..7873baa84f5fa79559588832ba2b4724f0cb9112 100644 |
--- a/third_party/WebKit/Source/web/WebEmbeddedWorkerImpl.cpp |
+++ b/third_party/WebKit/Source/web/WebEmbeddedWorkerImpl.cpp |
@@ -193,7 +193,7 @@ void WebEmbeddedWorkerImpl::postMessageToPageInspector(const String& message) |
void WebEmbeddedWorkerImpl::postTaskToLoader(PassOwnPtr<ExecutionContextTask> task) |
{ |
- m_mainFrame->frame()->document()->postTask(FROM_HERE, task); |
+ m_mainFrame->frame()->document()->postTask(BLINK_FROM_HERE, task); |
} |
bool WebEmbeddedWorkerImpl::postTaskToWorkerGlobalScope(PassOwnPtr<ExecutionContextTask> task) |
@@ -201,7 +201,7 @@ bool WebEmbeddedWorkerImpl::postTaskToWorkerGlobalScope(PassOwnPtr<ExecutionCont |
if (m_askedToTerminate || !m_workerThread) |
return false; |
- m_workerThread->postTask(FROM_HERE, task); |
+ m_workerThread->postTask(BLINK_FROM_HERE, task); |
return !m_workerThread->terminated(); |
} |