| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2008 Apple Computer, Inc. All rights reserved. | 2 * Copyright (C) 2006, 2008 Apple Computer, Inc. All rights reserved. |
| 3 * Copyright (C) 2007-2008 Torch Mobile, Inc. | 3 * Copyright (C) 2007-2008 Torch Mobile, Inc. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 }; | 208 }; |
| 209 | 209 |
| 210 class PLATFORM_EXPORT FontCachePurgePreventer { | 210 class PLATFORM_EXPORT FontCachePurgePreventer { |
| 211 USING_FAST_MALLOC(FontCachePurgePreventer); | 211 USING_FAST_MALLOC(FontCachePurgePreventer); |
| 212 WTF_MAKE_NONCOPYABLE(FontCachePurgePreventer); | 212 WTF_MAKE_NONCOPYABLE(FontCachePurgePreventer); |
| 213 public: | 213 public: |
| 214 FontCachePurgePreventer() { FontCache::fontCache()->disablePurging(); } | 214 FontCachePurgePreventer() { FontCache::fontCache()->disablePurging(); } |
| 215 ~FontCachePurgePreventer() { FontCache::fontCache()->enablePurging(); } | 215 ~FontCachePurgePreventer() { FontCache::fontCache()->enablePurging(); } |
| 216 }; | 216 }; |
| 217 | 217 |
| 218 CString toSkFontMgrLocale(const String& locale); |
| 219 |
| 218 } // namespace blink | 220 } // namespace blink |
| 219 | 221 |
| 220 #endif | 222 #endif |
| OLD | NEW |