| 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 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 }; | 212 }; |
| 213 | 213 |
| 214 class PLATFORM_EXPORT FontCachePurgePreventer { | 214 class PLATFORM_EXPORT FontCachePurgePreventer { |
| 215 USING_FAST_MALLOC(FontCachePurgePreventer); | 215 USING_FAST_MALLOC(FontCachePurgePreventer); |
| 216 WTF_MAKE_NONCOPYABLE(FontCachePurgePreventer); | 216 WTF_MAKE_NONCOPYABLE(FontCachePurgePreventer); |
| 217 public: | 217 public: |
| 218 FontCachePurgePreventer() { FontCache::fontCache()->disablePurging(); } | 218 FontCachePurgePreventer() { FontCache::fontCache()->disablePurging(); } |
| 219 ~FontCachePurgePreventer() { FontCache::fontCache()->enablePurging(); } | 219 ~FontCachePurgePreventer() { FontCache::fontCache()->enablePurging(); } |
| 220 }; | 220 }; |
| 221 | 221 |
| 222 CString toSkFontMgrLocale(const String& locale); | |
| 223 | |
| 224 } // namespace blink | 222 } // namespace blink |
| 225 | 223 |
| 226 #endif | 224 #endif |
| OLD | NEW |