| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 GenericFamilyFantasy | 50 GenericFamilyFantasy |
| 51 }; | 51 }; |
| 52 | 52 |
| 53 enum Smoothing { | 53 enum Smoothing { |
| 54 SmoothingAuto, | 54 SmoothingAuto, |
| 55 SmoothingNone, | 55 SmoothingNone, |
| 56 SmoothingGrayscale, | 56 SmoothingGrayscale, |
| 57 SmoothingSubpixel | 57 SmoothingSubpixel |
| 58 }; | 58 }; |
| 59 | 59 |
| 60 enum Weight { | 60 enum Weight { |
| 61 Weight100, | 61 Weight100, |
| 62 Weight200, | 62 Weight200, |
| 63 Weight300, | 63 Weight300, |
| 64 Weight400, | 64 Weight400, |
| 65 Weight500, | 65 Weight500, |
| 66 Weight600, | 66 Weight600, |
| 67 Weight700, | 67 Weight700, |
| 68 Weight800, | 68 Weight800, |
| 69 Weight900, | 69 Weight900, |
| 70 WeightNormal = Weight400, | 70 WeightNormal = Weight400, |
| (...skipping 26 matching lines...) Expand all Loading... |
| 97 #if WEBKIT_IMPLEMENTATION | 97 #if WEBKIT_IMPLEMENTATION |
| 98 WebFontDescription(const WebCore::FontDescription&, short fontLetterSpacing,
short fontWordSpacing); | 98 WebFontDescription(const WebCore::FontDescription&, short fontLetterSpacing,
short fontWordSpacing); |
| 99 | 99 |
| 100 operator WebCore::FontDescription() const; | 100 operator WebCore::FontDescription() const; |
| 101 #endif | 101 #endif |
| 102 }; | 102 }; |
| 103 | 103 |
| 104 } // namespace WebKit | 104 } // namespace WebKit |
| 105 | 105 |
| 106 #endif | 106 #endif |
| OLD | NEW |