Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(278)

Side by Side Diff: Source/core/css/resolver/StyleBuilderConverter.h

Issue 1266713003: Clean up some StyleBuilder property application code (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 static EPaintOrder convertPaintOrder(StyleResolverState&, CSSValue*); 86 static EPaintOrder convertPaintOrder(StyleResolverState&, CSSValue*);
87 static PassRefPtr<ShadowList> convertShadow(StyleResolverState&, CSSValue*); 87 static PassRefPtr<ShadowList> convertShadow(StyleResolverState&, CSSValue*);
88 static PassRefPtrWillBeRawPtr<ShapeValue> convertShapeValue(StyleResolverSta te&, CSSValue*); 88 static PassRefPtrWillBeRawPtr<ShapeValue> convertShapeValue(StyleResolverSta te&, CSSValue*);
89 static float convertSpacing(StyleResolverState&, CSSValue*); 89 static float convertSpacing(StyleResolverState&, CSSValue*);
90 template <CSSValueID IdForNone> static AtomicString convertString(StyleResol verState&, CSSValue*); 90 template <CSSValueID IdForNone> static AtomicString convertString(StyleResol verState&, CSSValue*);
91 static PassRefPtr<SVGDashArray> convertStrokeDasharray(StyleResolverState&, CSSValue*); 91 static PassRefPtr<SVGDashArray> convertStrokeDasharray(StyleResolverState&, CSSValue*);
92 static StyleColor convertStyleColor(StyleResolverState&, CSSValue*, bool for VisitedLink = false); 92 static StyleColor convertStyleColor(StyleResolverState&, CSSValue*, bool for VisitedLink = false);
93 static float convertTextStrokeWidth(StyleResolverState&, CSSValue*); 93 static float convertTextStrokeWidth(StyleResolverState&, CSSValue*);
94 static TransformOrigin convertTransformOrigin(StyleResolverState&, CSSValue* ); 94 static TransformOrigin convertTransformOrigin(StyleResolverState&, CSSValue* );
95 95
96 static bool convertGridTrackList(CSSValue*, Vector<GridTrackSize>&, NamedGri dLinesMap&, OrderedNamedGridLines&, StyleResolverState&); 96 static void convertGridTrackList(CSSValue*, Vector<GridTrackSize>&, NamedGri dLinesMap&, OrderedNamedGridLines&, StyleResolverState&);
97 static void createImplicitNamedGridLinesFromGridArea(const NamedGridAreaMap& , NamedGridLinesMap&, GridTrackSizingDirection); 97 static void createImplicitNamedGridLinesFromGridArea(const NamedGridAreaMap& , NamedGridLinesMap&, GridTrackSizingDirection);
98 static void convertOrderedNamedGridLinesMapToNamedGridLinesMap(const Ordered NamedGridLines&, NamedGridLinesMap&); 98 static void convertOrderedNamedGridLinesMapToNamedGridLinesMap(const Ordered NamedGridLines&, NamedGridLinesMap&);
99 99
100 static ScrollSnapPoints convertSnapPoints(StyleResolverState&, CSSValue*); 100 static ScrollSnapPoints convertSnapPoints(StyleResolverState&, CSSValue*);
101 static Vector<LengthPoint> convertSnapCoordinates(StyleResolverState&, CSSVa lue*); 101 static Vector<LengthPoint> convertSnapCoordinates(StyleResolverState&, CSSVa lue*);
102 static LengthPoint convertSnapDestination(StyleResolverState&, CSSValue*); 102 static LengthPoint convertSnapDestination(StyleResolverState&, CSSValue*);
103 static PassRefPtr<TranslateTransformOperation> convertTranslate(StyleResolve rState&, CSSValue*); 103 static PassRefPtr<TranslateTransformOperation> convertTranslate(StyleResolve rState&, CSSValue*);
104 static PassRefPtr<RotateTransformOperation> convertRotate(StyleResolverState &, CSSValue*); 104 static PassRefPtr<RotateTransformOperation> convertRotate(StyleResolverState &, CSSValue*);
105 static PassRefPtr<ScaleTransformOperation> convertScale(StyleResolverState&, CSSValue*); 105 static PassRefPtr<ScaleTransformOperation> convertScale(StyleResolverState&, CSSValue*);
106 static RespectImageOrientationEnum convertImageOrientation(StyleResolverStat e&, CSSValue*); 106 static RespectImageOrientationEnum convertImageOrientation(StyleResolverStat e&, CSSValue*);
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 { 154 {
155 CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(value); 155 CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(value);
156 if (primitiveValue->getValueID() == IdForNone) 156 if (primitiveValue->getValueID() == IdForNone)
157 return nullAtom; 157 return nullAtom;
158 return AtomicString(primitiveValue->getStringValue()); 158 return AtomicString(primitiveValue->getStringValue());
159 } 159 }
160 160
161 } // namespace blink 161 } // namespace blink
162 162
163 #endif 163 #endif
OLDNEW
« no previous file with comments | « Source/core/css/resolver/FilterOperationResolver.cpp ('k') | Source/core/css/resolver/StyleBuilderConverter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698