Index: third_party/WebKit/Source/modules/filesystem/DOMFileSystem.h |
diff --git a/third_party/WebKit/Source/modules/filesystem/DOMFileSystem.h b/third_party/WebKit/Source/modules/filesystem/DOMFileSystem.h |
index 92a878ad0d8e0ab21f1e71bf15e356f061b1f865..32910e2a087458cc5e6fa80c429c0815cb91c596 100644 |
--- a/third_party/WebKit/Source/modules/filesystem/DOMFileSystem.h |
+++ b/third_party/WebKit/Source/modules/filesystem/DOMFileSystem.h |
@@ -176,7 +176,7 @@ void DOMFileSystem::scheduleCallback(ExecutionContext* executionContext, CB* cal |
{ |
ASSERT(executionContext->isContextThread()); |
if (callback) |
- executionContext->postTask(FROM_HERE, adoptPtr(new DispatchCallbackPtrArgTask<CB, CBArg>(callback, arg))); |
+ executionContext->postTask(BLINK_FROM_HERE, adoptPtr(new DispatchCallbackPtrArgTask<CB, CBArg>(callback, arg))); |
} |
template <typename CB, typename CBArg> |
@@ -184,7 +184,7 @@ void DOMFileSystem::scheduleCallback(ExecutionContext* executionContext, CB* cal |
{ |
ASSERT(executionContext->isContextThread()); |
if (callback) |
- executionContext->postTask(FROM_HERE, adoptPtr(new DispatchCallbackNonPtrArgTask<CB, PersistentHeapVector<CBArg>>(callback, arg))); |
+ executionContext->postTask(BLINK_FROM_HERE, adoptPtr(new DispatchCallbackNonPtrArgTask<CB, PersistentHeapVector<CBArg>>(callback, arg))); |
} |
template <typename CB, typename CBArg> |
@@ -192,7 +192,7 @@ void DOMFileSystem::scheduleCallback(ExecutionContext* executionContext, CB* cal |
{ |
ASSERT(executionContext->isContextThread()); |
if (callback) |
- executionContext->postTask(FROM_HERE, adoptPtr(new DispatchCallbackNonPtrArgTask<CB, CBArg>(callback, arg))); |
+ executionContext->postTask(BLINK_FROM_HERE, adoptPtr(new DispatchCallbackNonPtrArgTask<CB, CBArg>(callback, arg))); |
} |
template <typename CB, typename CBArg> |
@@ -200,7 +200,7 @@ void DOMFileSystem::scheduleCallback(ExecutionContext* executionContext, CB* cal |
{ |
ASSERT(executionContext->isContextThread()); |
if (callback) |
- executionContext->postTask(FROM_HERE, adoptPtr(new DispatchCallbackNonPtrArgTask<CB, Persistent<CBArg>>(callback, arg))); |
+ executionContext->postTask(BLINK_FROM_HERE, adoptPtr(new DispatchCallbackNonPtrArgTask<CB, Persistent<CBArg>>(callback, arg))); |
} |
template <typename CB> |
@@ -208,7 +208,7 @@ void DOMFileSystem::scheduleCallback(ExecutionContext* executionContext, CB* cal |
{ |
ASSERT(executionContext->isContextThread()); |
if (callback) |
- executionContext->postTask(FROM_HERE, adoptPtr(new DispatchCallbackNoArgTask<CB>(callback))); |
+ executionContext->postTask(BLINK_FROM_HERE, adoptPtr(new DispatchCallbackNoArgTask<CB>(callback))); |
} |
} // namespace blink |