| Index: third_party/WebKit/Source/core/dom/ExecutionContext.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/ExecutionContext.cpp b/third_party/WebKit/Source/core/dom/ExecutionContext.cpp
|
| index d7c503225059fccf0644153f1f681e25d157055f..f93c7f7e2f9602a5cf5ac0940815cc81dba1be9d 100644
|
| --- a/third_party/WebKit/Source/core/dom/ExecutionContext.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/ExecutionContext.cpp
|
| @@ -107,7 +107,7 @@ void ExecutionContext::postSuspendableTask(PassOwnPtr<SuspendableTask> task)
|
| {
|
| m_suspendedTasks.append(task);
|
| if (!m_activeDOMObjectsAreSuspended)
|
| - postTask(FROM_HERE, createSameThreadTask(&ExecutionContext::runSuspendableTasks, this));
|
| + postTask(BLINK_FROM_HERE, createSameThreadTask(&ExecutionContext::runSuspendableTasks, this));
|
| }
|
|
|
| void ExecutionContext::notifyContextDestroyed()
|
| @@ -133,7 +133,7 @@ void ExecutionContext::resumeScheduledTasks()
|
| if (m_isRunSuspendableTasksScheduled)
|
| return;
|
| m_isRunSuspendableTasksScheduled = true;
|
| - postTask(FROM_HERE, createSameThreadTask(&ExecutionContext::runSuspendableTasks, this));
|
| + postTask(BLINK_FROM_HERE, createSameThreadTask(&ExecutionContext::runSuspendableTasks, this));
|
| }
|
|
|
| void ExecutionContext::suspendActiveDOMObjectIfNeeded(ActiveDOMObject* object)
|
|
|