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

Unified Diff: Source/platform/fonts/win/FontCacheSkiaWin.cpp

Issue 858663002: Fix template angle bracket syntax in platform (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase 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
« no previous file with comments | « Source/platform/fonts/skia/FontCacheSkia.cpp ('k') | Source/platform/geometry/FloatPolygon.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/fonts/win/FontCacheSkiaWin.cpp
diff --git a/Source/platform/fonts/win/FontCacheSkiaWin.cpp b/Source/platform/fonts/win/FontCacheSkiaWin.cpp
index 896e7d1c7d103af31eeb06a82b7d1786ee8d0d14..d7883bf3a456e60e7890b99869fac710c5af6df0 100644
--- a/Source/platform/fonts/win/FontCacheSkiaWin.cpp
+++ b/Source/platform/fonts/win/FontCacheSkiaWin.cpp
@@ -43,7 +43,7 @@
namespace blink {
-HashMap<String, RefPtr<SkTypeface> >* FontCache::s_sideloadedFonts = 0;
+HashMap<String, RefPtr<SkTypeface>>* FontCache::s_sideloadedFonts = 0;
// Cached system font metrics.
AtomicString* FontCache::s_menuFontFamilyName = 0;
@@ -68,7 +68,7 @@ int32_t ensureMinimumFontHeightIfNeeded(int32_t fontHeight)
void FontCache::addSideloadedFontForTesting(SkTypeface* typeface)
{
if (!s_sideloadedFonts)
- s_sideloadedFonts = new HashMap<String, RefPtr<SkTypeface> >;
+ s_sideloadedFonts = new HashMap<String, RefPtr<SkTypeface>>;
SkString name;
typeface->getFamilyName(&name);
s_sideloadedFonts->set(name.c_str(), adoptRef(typeface));
« no previous file with comments | « Source/platform/fonts/skia/FontCacheSkia.cpp ('k') | Source/platform/geometry/FloatPolygon.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698