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

Unified Diff: Source/core/dom/CrossThreadTask.h

Issue 1006723003: Fix template angle bracket syntax in dom (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 9 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
« no previous file with comments | « Source/core/dom/ClientRectList.h ('k') | Source/core/dom/DocumentMarkerController.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/CrossThreadTask.h
diff --git a/Source/core/dom/CrossThreadTask.h b/Source/core/dom/CrossThreadTask.h
index 1d7618b1bbc5d734a53798758a00094ce624f687..d171550ebc4548861f5aa5d8c91f9104deb244ac 100644
--- a/Source/core/dom/CrossThreadTask.h
+++ b/Source/core/dom/CrossThreadTask.h
@@ -50,13 +50,13 @@ template<typename T> struct CrossThreadTaskTraits {
template<typename T> struct CrossThreadTaskTraits<T*> {
typedef T* ParamType;
};
-template<typename T> struct CrossThreadTaskTraits<PassRefPtr<T> > {
+template<typename T> struct CrossThreadTaskTraits<PassRefPtr<T>> {
typedef PassRefPtr<T> ParamType;
};
-template<typename T> struct CrossThreadTaskTraits<PassOwnPtr<T> > {
+template<typename T> struct CrossThreadTaskTraits<PassOwnPtr<T>> {
typedef PassOwnPtr<T> ParamType;
};
-template<typename T> struct CrossThreadTaskTraits<RawPtr<T> > {
+template<typename T> struct CrossThreadTaskTraits<RawPtr<T>> {
typedef RawPtr<T> ParamType;
};
« no previous file with comments | « Source/core/dom/ClientRectList.h ('k') | Source/core/dom/DocumentMarkerController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698