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

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

Issue 2294433002: s/s_fontManager/s_staticFontManager/ to help rewrite_to_chrome_style tool. (Closed)
Patch Set: Created 4 years, 3 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/fonts/FontCache.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 static AtomicString getFamilyNameForCharacter(SkFontMgr*, UChar32, const Fon tDescription&, FontFallbackPriority); 183 static AtomicString getFamilyNameForCharacter(SkFontMgr*, UChar32, const Fon tDescription&, FontFallbackPriority);
184 #endif 184 #endif
185 185
186 PassRefPtr<SimpleFontData> fallbackOnStandardFontStyle(const FontDescription &, UChar32); 186 PassRefPtr<SimpleFontData> fallbackOnStandardFontStyle(const FontDescription &, UChar32);
187 187
188 // Don't purge if this count is > 0; 188 // Don't purge if this count is > 0;
189 int m_purgePreventCount; 189 int m_purgePreventCount;
190 190
191 RefPtr<SkFontMgr> m_fontManager; 191 RefPtr<SkFontMgr> m_fontManager;
192 192
193 static SkFontMgr* s_fontManager; 193 static SkFontMgr* s_staticFontManager;
194 194
195 #if OS(WIN) 195 #if OS(WIN)
196 static bool s_antialiasedTextEnabled; 196 static bool s_antialiasedTextEnabled;
197 static bool s_lcdTextEnabled; 197 static bool s_lcdTextEnabled;
198 static float s_deviceScaleFactor; 198 static float s_deviceScaleFactor;
199 static HashMap<String, RefPtr<SkTypeface>>* s_sideloadedFonts; 199 static HashMap<String, RefPtr<SkTypeface>>* s_sideloadedFonts;
200 // The system font metrics cache. 200 // The system font metrics cache.
201 static AtomicString* s_menuFontFamilyName; 201 static AtomicString* s_menuFontFamilyName;
202 static int32_t s_menuFontHeight; 202 static int32_t s_menuFontHeight;
203 static AtomicString* s_smallCaptionFontFamilyName; 203 static AtomicString* s_smallCaptionFontFamilyName;
(...skipping 11 matching lines...) Expand all
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 } // namespace blink 222 } // namespace blink
223 223
224 #endif 224 #endif
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/fonts/FontCache.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698