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

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

Issue 864533002: Fix template angle bracket syntax in modules (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 11 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: 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>

Powered by Google App Engine
This is Rietveld 408576698