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

Unified Diff: Source/platform/fonts/FontDataCache.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/FontDataCache.h ('k') | Source/platform/fonts/GlyphMetricsMap.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/fonts/FontDataCache.cpp
diff --git a/Source/platform/fonts/FontDataCache.cpp b/Source/platform/fonts/FontDataCache.cpp
index 1d488fd30a75bf5c91dea54687434d3dff82b49e..e94a82366f3ba5804954ae3e31d74f242084ef24 100644
--- a/Source/platform/fonts/FontDataCache.cpp
+++ b/Source/platform/fonts/FontDataCache.cpp
@@ -124,8 +124,8 @@ bool FontDataCache::purgeLeastRecentlyUsed(int count)
isPurging = true;
Vector<RefPtr<SimpleFontData>, 20> fontDataToDelete;
- ListHashSet<RefPtr<SimpleFontData> >::iterator end = m_inactiveFontData.end();
- ListHashSet<RefPtr<SimpleFontData> >::iterator it = m_inactiveFontData.begin();
+ ListHashSet<RefPtr<SimpleFontData>>::iterator end = m_inactiveFontData.end();
+ ListHashSet<RefPtr<SimpleFontData>>::iterator it = m_inactiveFontData.begin();
for (int i = 0; i < count && it != end; ++it, ++i) {
RefPtr<SimpleFontData>& fontData = *it.get();
m_cache.remove(fontData->platformData());
« no previous file with comments | « Source/platform/fonts/FontDataCache.h ('k') | Source/platform/fonts/GlyphMetricsMap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698