OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2008 Apple Inc. All rights reserved. |
3 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> | 3 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> |
4 * Copyright (C) 2013 Google, Inc. All rights reserved. | 4 * Copyright (C) 2013 Google, Inc. All rights reserved. |
5 * | 5 * |
6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
8 * are met: | 8 * are met: |
9 * | 9 * |
10 * 1. Redistributions of source code must retain the above copyright | 10 * 1. Redistributions of source code must retain the above copyright |
(...skipping 16 matching lines...) Expand all Loading... |
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 */ | 29 */ |
30 | 30 |
31 #ifndef AlternateFontFamily_h | 31 #ifndef AlternateFontFamily_h |
32 #define AlternateFontFamily_h | 32 #define AlternateFontFamily_h |
33 | 33 |
34 #include "platform/fonts/FontDescription.h" | 34 #include "platform/fonts/FontDescription.h" |
35 #include "wtf/text/AtomicString.h" | 35 #include "wtf/text/AtomicString.h" |
36 | 36 |
37 namespace WebCore { | 37 namespace blink { |
38 | 38 |
39 // We currently do not support bitmap fonts on windows. | 39 // We currently do not support bitmap fonts on windows. |
40 // Instead of trying to construct a bitmap font and then going down the fallback
path map | 40 // Instead of trying to construct a bitmap font and then going down the fallback
path map |
41 // certain common bitmap fonts to their truetype equivalent up front. | 41 // certain common bitmap fonts to their truetype equivalent up front. |
42 inline const AtomicString& adjustFamilyNameToAvoidUnsupportedFonts(const AtomicS
tring& familyName) | 42 inline const AtomicString& adjustFamilyNameToAvoidUnsupportedFonts(const AtomicS
tring& familyName) |
43 { | 43 { |
44 #if OS(WIN) | 44 #if OS(WIN) |
45 // On Windows, 'Courier New' (truetype font) is always present and | 45 // On Windows, 'Courier New' (truetype font) is always present and |
46 // 'Courier' is a bitmap font. On Mac on the other hand 'Courier' is | 46 // 'Courier' is a bitmap font. On Mac on the other hand 'Courier' is |
47 // a truetype font. Thus pages asking for Courier are better of | 47 // a truetype font. Thus pages asking for Courier are better of |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 case FontDescription::CursiveFamily: | 124 case FontDescription::CursiveFamily: |
125 return cursiveStr; | 125 return cursiveStr; |
126 case FontDescription::FantasyFamily: | 126 case FontDescription::FantasyFamily: |
127 return fantasyStr; | 127 return fantasyStr; |
128 default: | 128 default: |
129 // Let the caller use the system default font. | 129 // Let the caller use the system default font. |
130 return emptyAtom; | 130 return emptyAtom; |
131 } | 131 } |
132 } | 132 } |
133 | 133 |
134 } // namespace WebCore | 134 } // namespace blink |
135 | 135 |
136 #endif // AlternateFontFamily_h | 136 #endif // AlternateFontFamily_h |
OLD | NEW |