Index: Source/modules/filesystem/DOMFileSystem.h |
diff --git a/Source/modules/filesystem/DOMFileSystem.h b/Source/modules/filesystem/DOMFileSystem.h |
index d68d351af7539ae72f385f586cc30a67fcf58315..5f3db6aead21088b39d02cb3c573af4ef1a0839f 100644 |
--- a/Source/modules/filesystem/DOMFileSystem.h |
+++ b/Source/modules/filesystem/DOMFileSystem.h |
@@ -218,7 +218,7 @@ void DOMFileSystem::scheduleCallback(ExecutionContext* executionContext, CB* cal |
{ |
ASSERT(executionContext->isContextThread()); |
if (callback) |
- executionContext->postTask(adoptPtr(new DispatchCallbackNonPtrArgTask<CB, PersistentHeapVector<CBArg> >(callback, arg))); |
+ executionContext->postTask(adoptPtr(new DispatchCallbackNonPtrArgTask<CB, PersistentHeapVector<CBArg>>(callback, arg))); |
} |
template <typename CB, typename CBArg> |
@@ -234,7 +234,7 @@ void DOMFileSystem::scheduleCallback(ExecutionContext* executionContext, CB* cal |
{ |
ASSERT(executionContext->isContextThread()); |
if (callback) |
- executionContext->postTask(adoptPtr(new DispatchCallbackNonPtrArgTask<CB, Persistent<CBArg> >(callback, arg))); |
+ executionContext->postTask(adoptPtr(new DispatchCallbackNonPtrArgTask<CB, Persistent<CBArg>>(callback, arg))); |
} |
template <typename CB> |