Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(724)

Unified Diff: third_party/WebKit/Source/modules/filesystem/DOMFileSystem.h

Issue 1362973004: Rename FROM_HERE to BLINK_FROM_HERE. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698