| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |