OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
3 * | 3 * |
4 * * Redistributions of source code must retain the above copyright | 4 * * Redistributions of source code must retain the above copyright |
5 * notice, this list of conditions and the following disclaimer. | 5 * notice, this list of conditions and the following disclaimer. |
6 * * Redistributions in binary form must reproduce the above | 6 * * Redistributions in binary form must reproduce the above |
7 * copyright notice, this list of conditions and the following disclaimer | 7 * copyright notice, this list of conditions and the following disclaimer |
8 * in the documentation and/or other materials provided with the | 8 * in the documentation and/or other materials provided with the |
9 * distribution. | 9 * distribution. |
10 * * Neither the name of Google Inc. nor the names of its | 10 * * Neither the name of Google Inc. nor the names of its |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 // Note that we assume the parser only allows valid CSSValue types. | 42 // Note that we assume the parser only allows valid CSSValue types. |
43 | 43 |
44 class StyleBuilderConverter { | 44 class StyleBuilderConverter { |
45 public: | 45 public: |
46 static PassRefPtr<StyleReflection> convertBoxReflect(StyleResolverState&, CS
SValue*); | 46 static PassRefPtr<StyleReflection> convertBoxReflect(StyleResolverState&, CS
SValue*); |
47 static AtomicString convertFragmentIdentifier(StyleResolverState&, CSSValue*
); | 47 static AtomicString convertFragmentIdentifier(StyleResolverState&, CSSValue*
); |
48 static Color convertColor(StyleResolverState&, CSSValue*, bool forVisitedLin
k = false); | 48 static Color convertColor(StyleResolverState&, CSSValue*, bool forVisitedLin
k = false); |
49 template <typename T> static T convertComputedLength(StyleResolverState&, CS
SValue*); | 49 template <typename T> static T convertComputedLength(StyleResolverState&, CS
SValue*); |
50 template <typename T> static T convertFlags(StyleResolverState&, CSSValue*); | 50 template <typename T> static T convertFlags(StyleResolverState&, CSSValue*); |
51 static PassRefPtr<FontFeatureSettings> convertFontFeatureSettings(StyleResol
verState&, CSSValue*); | 51 static PassRefPtr<FontFeatureSettings> convertFontFeatureSettings(StyleResol
verState&, CSSValue*); |
| 52 static FontDescription::Size convertFontSize(StyleResolverState&, CSSValue*)
; |
52 static FontWeight convertFontWeight(StyleResolverState&, CSSValue*); | 53 static FontWeight convertFontWeight(StyleResolverState&, CSSValue*); |
53 static FontDescription::VariantLigatures convertFontVariantLigatures(StyleRe
solverState&, CSSValue*); | 54 static FontDescription::VariantLigatures convertFontVariantLigatures(StyleRe
solverState&, CSSValue*); |
54 static EGlyphOrientation convertGlyphOrientation(StyleResolverState&, CSSVal
ue*); | 55 static EGlyphOrientation convertGlyphOrientation(StyleResolverState&, CSSVal
ue*); |
55 static GridPosition convertGridPosition(StyleResolverState&, CSSValue*); | 56 static GridPosition convertGridPosition(StyleResolverState&, CSSValue*); |
56 static GridTrackSize convertGridTrackSize(StyleResolverState&, CSSValue*); | 57 static GridTrackSize convertGridTrackSize(StyleResolverState&, CSSValue*); |
57 template <typename T> static T convertLineWidth(StyleResolverState&, CSSValu
e*); | 58 template <typename T> static T convertLineWidth(StyleResolverState&, CSSValu
e*); |
58 static Length convertLength(StyleResolverState&, CSSValue*); | 59 static Length convertLength(StyleResolverState&, CSSValue*); |
59 static Length convertLengthOrAuto(StyleResolverState&, CSSValue*); | 60 static Length convertLengthOrAuto(StyleResolverState&, CSSValue*); |
60 static Length convertLengthSizing(StyleResolverState&, CSSValue*); | 61 static Length convertLengthSizing(StyleResolverState&, CSSValue*); |
61 static Length convertLengthMaxSizing(StyleResolverState&, CSSValue*); | 62 static Length convertLengthMaxSizing(StyleResolverState&, CSSValue*); |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 { | 124 { |
124 CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(value); | 125 CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(value); |
125 if (primitiveValue->getValueID() == IdForNone) | 126 if (primitiveValue->getValueID() == IdForNone) |
126 return nullAtom; | 127 return nullAtom; |
127 return AtomicString(primitiveValue->getStringValue()); | 128 return AtomicString(primitiveValue->getStringValue()); |
128 } | 129 } |
129 | 130 |
130 } // namespace blink | 131 } // namespace blink |
131 | 132 |
132 #endif | 133 #endif |
OLD | NEW |