Index: third_party/WebKit/Source/core/workers/WorkerMessagingProxy.cpp |
diff --git a/third_party/WebKit/Source/core/workers/WorkerMessagingProxy.cpp b/third_party/WebKit/Source/core/workers/WorkerMessagingProxy.cpp |
index 47e53101b49cc83eb68e0caf3e04e0e6877272b7..6f3b8aeab920f7de48477336b66257a263412299 100644 |
--- a/third_party/WebKit/Source/core/workers/WorkerMessagingProxy.cpp |
+++ b/third_party/WebKit/Source/core/workers/WorkerMessagingProxy.cpp |
@@ -140,7 +140,7 @@ void WorkerMessagingProxy::postMessageToWorkerGlobalScope(PassRefPtr<SerializedS |
OwnPtr<ExecutionContextTask> task = createCrossThreadTask(&processMessageOnWorkerGlobalScope, message, channels, AllowCrossThreadAccess(&workerObjectProxy())); |
if (m_workerThread) { |
++m_unconfirmedMessageCount; |
- m_workerThread->postTask(FROM_HERE, task.release()); |
+ m_workerThread->postTask(BLINK_FROM_HERE, task.release()); |
} else { |
m_queuedEarlyTasks.append(task.release()); |
} |
@@ -152,7 +152,7 @@ bool WorkerMessagingProxy::postTaskToWorkerGlobalScope(PassOwnPtr<ExecutionConte |
return false; |
ASSERT(m_workerThread); |
- m_workerThread->postTask(FROM_HERE, task); |
+ m_workerThread->postTask(BLINK_FROM_HERE, task); |
return true; |
} |
@@ -160,7 +160,7 @@ void WorkerMessagingProxy::postTaskToLoader(PassOwnPtr<ExecutionContextTask> tas |
{ |
// FIXME: In case of nested workers, this should go directly to the root Document context. |
ASSERT(m_executionContext->isDocument()); |
- m_executionContext->postTask(FROM_HERE, task); |
+ m_executionContext->postTask(BLINK_FROM_HERE, task); |
} |
void WorkerMessagingProxy::reportException(const String& errorMessage, int lineNumber, int columnNumber, const String& sourceURL, int exceptionId) |
@@ -202,7 +202,7 @@ void WorkerMessagingProxy::workerThreadCreated(PassRefPtr<WorkerThread> workerTh |
m_workerThreadHadPendingActivity = true; // Worker initialization means a pending activity. |
for (auto& earlyTasks : m_queuedEarlyTasks) |
- m_workerThread->postTask(FROM_HERE, earlyTasks.release()); |
+ m_workerThread->postTask(BLINK_FROM_HERE, earlyTasks.release()); |
m_queuedEarlyTasks.clear(); |
} |
@@ -213,7 +213,7 @@ void WorkerMessagingProxy::workerObjectDestroyed() |
// before this method gets called. |
ASSERT(!m_workerObject); |
- m_executionContext->postTask(FROM_HERE, createCrossThreadTask(&WorkerMessagingProxy::workerObjectDestroyedInternal, this)); |
+ m_executionContext->postTask(BLINK_FROM_HERE, createCrossThreadTask(&WorkerMessagingProxy::workerObjectDestroyedInternal, this)); |
} |
void WorkerMessagingProxy::workerObjectDestroyedInternal() |