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

Unified Diff: Source/core/css/CSSSegmentedFontFace.h

Issue 989173003: Fix template angle bracket syntax in css (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/css/CSSRuleList.h ('k') | Source/core/css/CSSSegmentedFontFace.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « Source/core/css/CSSRuleList.h ('k') | Source/core/css/CSSSegmentedFontFace.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698