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

Unified Diff: Source/core/dom/TouchList.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/StyleSheetCollection.cpp ('k') | Source/core/dom/TreeScope.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/TouchList.h
diff --git a/Source/core/dom/TouchList.h b/Source/core/dom/TouchList.h
index c7c2a8385d3adf443331c9f747969fac0f9bebc1..e619ac614329c20e04fb19b0985d1f0497bd9fb6 100644
--- a/Source/core/dom/TouchList.h
+++ b/Source/core/dom/TouchList.h
@@ -42,7 +42,7 @@ public:
return adoptRefWillBeNoop(new TouchList);
}
- static PassRefPtrWillBeRawPtr<TouchList> adopt(WillBeHeapVector<RefPtrWillBeMember<Touch> >& touches)
+ static PassRefPtrWillBeRawPtr<TouchList> adopt(WillBeHeapVector<RefPtrWillBeMember<Touch>>& touches)
{
return adoptRefWillBeNoop(new TouchList(touches));
}
@@ -59,12 +59,12 @@ public:
private:
TouchList() { }
- TouchList(WillBeHeapVector<RefPtrWillBeMember<Touch> >& touches)
+ TouchList(WillBeHeapVector<RefPtrWillBeMember<Touch>>& touches)
{
m_values.swap(touches);
}
- WillBeHeapVector<RefPtrWillBeMember<Touch> > m_values;
+ WillBeHeapVector<RefPtrWillBeMember<Touch>> m_values;
};
} // namespace blink
« no previous file with comments | « Source/core/dom/StyleSheetCollection.cpp ('k') | Source/core/dom/TreeScope.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698