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

Side by Side Diff: Source/platform/exported/linux/WebFontInfo.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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
248 return m_setsByLocale.add(localeKey, newEntry.release()).storedValue ->value->fallbackFontForChar(c); 248 return m_setsByLocale.add(localeKey, newEntry.release()).storedValue ->value->fallbackFontForChar(c);
249 } 249 }
250 return itr.get()->value->fallbackFontForChar(c); 250 return itr.get()->value->fallbackFontForChar(c);
251 } 251 }
252 // FIXME: We may wish to add a way to prune the cache at a later time. 252 // FIXME: We may wish to add a way to prune the cache at a later time.
253 253
254 private: 254 private:
255 // FIXME: This shouldn't need to be AtomicString, but 255 // FIXME: This shouldn't need to be AtomicString, but
256 // currently HashTraits<const char*> isn't smart enough 256 // currently HashTraits<const char*> isn't smart enough
257 // to hash the string (only does pointer compares). 257 // to hash the string (only does pointer compares).
258 typedef HashMap<AtomicString, OwnPtr<CachedFontSet> > LocaleToCachedFont; 258 typedef HashMap<AtomicString, OwnPtr<CachedFontSet>> LocaleToCachedFont;
259 LocaleToCachedFont m_setsByLocale; 259 LocaleToCachedFont m_setsByLocale;
260 }; 260 };
261 261
262 void WebFontInfo::fallbackFontForChar(WebUChar32 c, const char* locale, WebFallb ackFont* fallbackFont) 262 void WebFontInfo::fallbackFontForChar(WebUChar32 c, const char* locale, WebFallb ackFont* fallbackFont)
263 { 263 {
264 *fallbackFont = FontSetCache::shared().fallbackFontForCharInLocale(c, locale ); 264 *fallbackFont = FontSetCache::shared().fallbackFontForCharInLocale(c, locale );
265 } 265 }
266 266
267 } // namespace blink 267 } // namespace blink
OLDNEW
« no previous file with comments | « Source/platform/exported/WebSpeechSynthesizerClientImpl.cpp ('k') | Source/platform/fonts/FontCache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698