 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/style/StyleTransformData.h | 
| diff --git a/Source/core/style/StyleTransformData.h b/Source/core/style/StyleTransformData.h | 
| index 9cdc73705246efd3281a56101ffabe6c258c3e8d..f38581df36c892437426d2ce0c27824ae79dfd87 100644 | 
| --- a/Source/core/style/StyleTransformData.h | 
| +++ b/Source/core/style/StyleTransformData.h | 
| @@ -27,7 +27,11 @@ | 
| #include "core/style/StyleMotionData.h" | 
| #include "core/style/TransformOrigin.h" | 
| +#include "platform/transforms/RotateTransformOperation.h" | 
| +#include "platform/transforms/ScaleTransformOperation.h" | 
| +#include "platform/transforms/TransformOperation.h" | 
| 
Eric Willigers
2015/06/11 02:15:19
I don't think we need to add this header.
 
soonm
2015/06/11 23:31:04
Done - Removed.
 | 
| #include "platform/transforms/TransformOperations.h" | 
| +#include "platform/transforms/TranslateTransformOperation.h" | 
| #include "wtf/PassRefPtr.h" | 
| #include "wtf/RefCounted.h" | 
| @@ -43,10 +47,18 @@ public: | 
| { | 
| return !(*this == o); | 
| } | 
| + void setTranslate(PassRefPtr<TranslateTransformOperation>); | 
| + void setRotate(PassRefPtr<RotateTransformOperation>); | 
| + void setScale(PassRefPtr<ScaleTransformOperation>); | 
| + | 
| + bool has3DTransformProperties() const; | 
| TransformOperations m_operations; | 
| TransformOrigin m_origin; | 
| StyleMotionData m_motion; | 
| + RefPtr<TranslateTransformOperation> m_translate; | 
| + RefPtr<RotateTransformOperation> m_rotate; | 
| + RefPtr<ScaleTransformOperation> m_scale; | 
| private: | 
| StyleTransformData(); |