 Chromium Code Reviews
 Chromium Code Reviews Issue 1158603003:
  CSS Independent Transform Properties  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/blink.git@master
    
  
    Issue 1158603003:
  CSS Independent Transform Properties  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/blink.git@master| Index: Source/core/css/resolver/StyleBuilderConverter.h | 
| diff --git a/Source/core/css/resolver/StyleBuilderConverter.h b/Source/core/css/resolver/StyleBuilderConverter.h | 
| index e0ca698ae08d9d2ac8812e5468df5c651e3d4519..8de0539b12cb9209eabeb18a2cc0851a14e146c7 100644 | 
| --- a/Source/core/css/resolver/StyleBuilderConverter.h | 
| +++ b/Source/core/css/resolver/StyleBuilderConverter.h | 
| @@ -43,6 +43,9 @@ | 
| namespace blink { | 
| // Note that we assume the parser only allows valid CSSValue types. | 
| +class RotateTransformOperation; | 
| 
Timothy Loh
2015/06/19 01:16:45
Probably better above the comment otherwise it rea
 
soonm
2015/06/19 04:39:52
Moved comment down
 | 
| +class TranslateTransformOperation; | 
| +class ScaleTransformOperation; | 
| class StyleBuilderConverter { | 
| public: | 
| @@ -98,6 +101,9 @@ public: | 
| static ScrollSnapPoints convertSnapPoints(StyleResolverState&, CSSValue*); | 
| static Vector<LengthPoint> convertSnapCoordinates(StyleResolverState&, CSSValue*); | 
| static LengthPoint convertSnapDestination(StyleResolverState&, CSSValue*); | 
| + static PassRefPtr<TranslateTransformOperation> convertTranslate(StyleResolverState&, CSSValue*); | 
| + static PassRefPtr<RotateTransformOperation> convertRotate(StyleResolverState&, CSSValue*); | 
| + static PassRefPtr<ScaleTransformOperation> convertScale(StyleResolverState&, CSSValue*); | 
| }; | 
| template <typename T> |