| 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 10 matching lines...) Expand all Loading... |
| 21 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | 21 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 22 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY | 22 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY |
| 23 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | 23 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 24 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | 24 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 25 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | 25 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| 26 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 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 SKY_ENGINE_PLATFORM_FONTS_ALTERNATEFONTFAMILY_H_ |
| 32 #define AlternateFontFamily_h | 32 #define SKY_ENGINE_PLATFORM_FONTS_ALTERNATEFONTFAMILY_H_ |
| 33 | 33 |
| 34 #include "sky/engine/platform/fonts/FontDescription.h" | 34 #include "sky/engine/platform/fonts/FontDescription.h" |
| 35 #include "sky/engine/wtf/text/AtomicString.h" | 35 #include "sky/engine/wtf/text/AtomicString.h" |
| 36 | 36 |
| 37 namespace blink { | 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) |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 case FontDescription::FantasyFamily: | 97 case FontDescription::FantasyFamily: |
| 98 return fantasyStr; | 98 return fantasyStr; |
| 99 default: | 99 default: |
| 100 // Let the caller use the system default font. | 100 // Let the caller use the system default font. |
| 101 return emptyAtom; | 101 return emptyAtom; |
| 102 } | 102 } |
| 103 } | 103 } |
| 104 | 104 |
| 105 } // namespace blink | 105 } // namespace blink |
| 106 | 106 |
| 107 #endif // AlternateFontFamily_h | 107 #endif // SKY_ENGINE_PLATFORM_FONTS_ALTERNATEFONTFAMILY_H_ |
| OLD | NEW |