| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 static float convertNumberOrPercentage(StyleResolverState&, CSSValue*); | 69 static float convertNumberOrPercentage(StyleResolverState&, CSSValue*); |
| 70 static float convertPerspective(StyleResolverState&, CSSValue*); | 70 static float convertPerspective(StyleResolverState&, CSSValue*); |
| 71 static LengthPoint convertPerspectiveOrigin(StyleResolverState&, CSSValue*); | 71 static LengthPoint convertPerspectiveOrigin(StyleResolverState&, CSSValue*); |
| 72 static PassRefPtr<QuotesData> convertQuotes(StyleResolverState&, CSSValue*); | 72 static PassRefPtr<QuotesData> convertQuotes(StyleResolverState&, CSSValue*); |
| 73 static LengthSize convertRadius(StyleResolverState&, CSSValue*); | 73 static LengthSize convertRadius(StyleResolverState&, CSSValue*); |
| 74 static EPaintOrder convertPaintOrder(StyleResolverState&, CSSValue*); | 74 static EPaintOrder convertPaintOrder(StyleResolverState&, CSSValue*); |
| 75 static PassRefPtr<ShadowList> convertShadow(StyleResolverState&, CSSValue*); | 75 static PassRefPtr<ShadowList> convertShadow(StyleResolverState&, CSSValue*); |
| 76 static PassRefPtr<ShapeValue> convertShapeValue(StyleResolverState&, CSSValu
e*); | 76 static PassRefPtr<ShapeValue> convertShapeValue(StyleResolverState&, CSSValu
e*); |
| 77 static float convertSpacing(StyleResolverState&, CSSValue*); | 77 static float convertSpacing(StyleResolverState&, CSSValue*); |
| 78 template <CSSValueID IdForNone> static AtomicString convertString(StyleResol
verState&, CSSValue*); | 78 template <CSSValueID IdForNone> static AtomicString convertString(StyleResol
verState&, CSSValue*); |
| 79 static PassRefPtr<SVGLengthList> convertStrokeDasharray(StyleResolverState&,
CSSValue*); | 79 static PassRefPtrWillBeRawPtr<SVGLengthList> convertStrokeDasharray(StyleRes
olverState&, CSSValue*); |
| 80 static StyleColor convertStyleColor(StyleResolverState&, CSSValue*, bool for
VisitedLink = false); | 80 static StyleColor convertStyleColor(StyleResolverState&, CSSValue*, bool for
VisitedLink = false); |
| 81 static Color convertSVGColor(StyleResolverState&, CSSValue*); | 81 static Color convertSVGColor(StyleResolverState&, CSSValue*); |
| 82 static PassRefPtr<SVGLength> convertSVGLength(StyleResolverState&, CSSValue*
); | 82 static PassRefPtrWillBeRawPtr<SVGLength> convertSVGLength(StyleResolverState
&, CSSValue*); |
| 83 static float convertTextStrokeWidth(StyleResolverState&, CSSValue*); | 83 static float convertTextStrokeWidth(StyleResolverState&, CSSValue*); |
| 84 static TransformOrigin convertTransformOrigin(StyleResolverState&, CSSValue*
); | 84 static TransformOrigin convertTransformOrigin(StyleResolverState&, CSSValue*
); |
| 85 | 85 |
| 86 static bool convertGridTrackList(CSSValue*, Vector<GridTrackSize>&, NamedGri
dLinesMap&, OrderedNamedGridLines&, StyleResolverState&); | 86 static bool convertGridTrackList(CSSValue*, Vector<GridTrackSize>&, NamedGri
dLinesMap&, OrderedNamedGridLines&, StyleResolverState&); |
| 87 static void createImplicitNamedGridLinesFromGridArea(const NamedGridAreaMap&
, NamedGridLinesMap&, GridTrackSizingDirection); | 87 static void createImplicitNamedGridLinesFromGridArea(const NamedGridAreaMap&
, NamedGridLinesMap&, GridTrackSizingDirection); |
| 88 static void convertOrderedNamedGridLinesMapToNamedGridLinesMap(const Ordered
NamedGridLines&, NamedGridLinesMap&); | 88 static void convertOrderedNamedGridLinesMapToNamedGridLinesMap(const Ordered
NamedGridLines&, NamedGridLinesMap&); |
| 89 }; | 89 }; |
| 90 | 90 |
| 91 template <typename T> | 91 template <typename T> |
| 92 T StyleBuilderConverter::convertComputedLength(StyleResolverState& state, CSSVal
ue* value) | 92 T StyleBuilderConverter::convertComputedLength(StyleResolverState& state, CSSVal
ue* value) |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 { | 136 { |
| 137 CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(value); | 137 CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(value); |
| 138 if (primitiveValue->getValueID() == IdForNone) | 138 if (primitiveValue->getValueID() == IdForNone) |
| 139 return nullAtom; | 139 return nullAtom; |
| 140 return AtomicString(primitiveValue->getStringValue()); | 140 return AtomicString(primitiveValue->getStringValue()); |
| 141 } | 141 } |
| 142 | 142 |
| 143 } // namespace blink | 143 } // namespace blink |
| 144 | 144 |
| 145 #endif | 145 #endif |
| OLD | NEW |