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

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

Issue 1962263002: Introduce FontCache content scaling (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: win layout test fix Created 4 years, 7 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 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 ASSERT(m_purgePreventCount); 166 ASSERT(m_purgePreventCount);
167 if (!--m_purgePreventCount) 167 if (!--m_purgePreventCount)
168 purge(PurgeIfNeeded); 168 purge(PurgeIfNeeded);
169 } 169 }
170 170
171 // FIXME: This method should eventually be removed. 171 // FIXME: This method should eventually be removed.
172 FontPlatformData* getFontPlatformData(const FontDescription&, const FontFace CreationParams&, bool checkingAlternateName = false); 172 FontPlatformData* getFontPlatformData(const FontDescription&, const FontFace CreationParams&, bool checkingAlternateName = false);
173 173
174 // These methods are implemented by each platform. 174 // These methods are implemented by each platform.
175 PassOwnPtr<FontPlatformData> createFontPlatformData(const FontDescription&, const FontFaceCreationParams&, float fontSize); 175 PassOwnPtr<FontPlatformData> createFontPlatformData(const FontDescription&, const FontFaceCreationParams&, float fontSize);
176 PassOwnPtr<FontPlatformData> scaleFontPlatformData(const FontPlatformData&, const FontDescription&, const FontFaceCreationParams&, float fontSize);
176 177
177 // Implemented on skia platforms. 178 // Implemented on skia platforms.
178 PassRefPtr<SkTypeface> createTypeface(const FontDescription&, const FontFace CreationParams&, CString& name); 179 PassRefPtr<SkTypeface> createTypeface(const FontDescription&, const FontFace CreationParams&, CString& name);
179 180
180 #if OS(ANDROID) || OS(LINUX) 181 #if OS(ANDROID) || OS(LINUX)
181 static AtomicString getFamilyNameForCharacter(SkFontMgr*, UChar32, const Fon tDescription&, FontFallbackPriority); 182 static AtomicString getFamilyNameForCharacter(SkFontMgr*, UChar32, const Fon tDescription&, FontFallbackPriority);
182 #endif 183 #endif
183 184
184 PassRefPtr<SimpleFontData> fallbackOnStandardFontStyle(const FontDescription &, UChar32); 185 PassRefPtr<SimpleFontData> fallbackOnStandardFontStyle(const FontDescription &, UChar32);
185 186
(...skipping 29 matching lines...) Expand all
215 public: 216 public:
216 FontCachePurgePreventer() { FontCache::fontCache()->disablePurging(); } 217 FontCachePurgePreventer() { FontCache::fontCache()->disablePurging(); }
217 ~FontCachePurgePreventer() { FontCache::fontCache()->enablePurging(); } 218 ~FontCachePurgePreventer() { FontCache::fontCache()->enablePurging(); }
218 }; 219 };
219 220
220 CString toSkFontMgrLocale(const String& locale); 221 CString toSkFontMgrLocale(const String& locale);
221 222
222 } // namespace blink 223 } // namespace blink
223 224
224 #endif 225 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698