Index: Source/core/css/CSSSegmentedFontFace.h |
diff --git a/Source/core/css/CSSSegmentedFontFace.h b/Source/core/css/CSSSegmentedFontFace.h |
index 6d9463a7fd63b0d93b70adb9c8737a73cf9b103f..8f2ce03fe697fda9bf4429f45e14147ada4e5bbb 100644 |
--- a/Source/core/css/CSSSegmentedFontFace.h |
+++ b/Source/core/css/CSSSegmentedFontFace.h |
@@ -65,7 +65,7 @@ public: |
PassRefPtr<FontData> getFontData(const FontDescription&); |
bool checkFont(const String&) const; |
- void match(const String&, WillBeHeapVector<RefPtrWillBeMember<FontFace> >&) const; |
+ void match(const String&, WillBeHeapVector<RefPtrWillBeMember<FontFace>>&) const; |
void willUseFontData(const FontDescription&, UChar32); |
DECLARE_TRACE(); |
@@ -76,11 +76,11 @@ private: |
void pruneTable(); |
bool isValid() const; |
- typedef WillBeHeapListHashSet<RefPtrWillBeMember<FontFace> > FontFaceList; |
+ typedef WillBeHeapListHashSet<RefPtrWillBeMember<FontFace>> FontFaceList; |
RawPtrWillBeMember<CSSFontSelector> m_fontSelector; |
FontTraits m_traits; |
- HashMap<unsigned, RefPtr<SegmentedFontData> > m_fontDataTable; |
+ HashMap<unsigned, RefPtr<SegmentedFontData>> m_fontDataTable; |
// All non-CSS-connected FontFaces are stored after the CSS-connected ones. |
FontFaceList m_fontFaces; |
FontFaceList::iterator m_firstNonCssConnectedFace; |