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

Side by Side Diff: third_party/WebKit/Source/platform/fonts/FontCache.h

Issue 1740593002: Use Skia's matchFamilyStyleCharacter API for font fallback (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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) 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 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 }; 209 };
210 210
211 class PLATFORM_EXPORT FontCachePurgePreventer { 211 class PLATFORM_EXPORT FontCachePurgePreventer {
212 USING_FAST_MALLOC(FontCachePurgePreventer); 212 USING_FAST_MALLOC(FontCachePurgePreventer);
213 WTF_MAKE_NONCOPYABLE(FontCachePurgePreventer); 213 WTF_MAKE_NONCOPYABLE(FontCachePurgePreventer);
214 public: 214 public:
215 FontCachePurgePreventer() { FontCache::fontCache()->disablePurging(); } 215 FontCachePurgePreventer() { FontCache::fontCache()->disablePurging(); }
216 ~FontCachePurgePreventer() { FontCache::fontCache()->enablePurging(); } 216 ~FontCachePurgePreventer() { FontCache::fontCache()->enablePurging(); }
217 }; 217 };
218 218
219 CString toSkFontMgrLocale(const String& locale);
220
219 } // namespace blink 221 } // namespace blink
220 222
221 #endif 223 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698