| Index: third_party/WebKit/Source/core/css/cssom/CSSSkew.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/cssom/SkewTransformComponent.cpp b/third_party/WebKit/Source/core/css/cssom/CSSSkew.cpp
|
| similarity index 83%
|
| rename from third_party/WebKit/Source/core/css/cssom/SkewTransformComponent.cpp
|
| rename to third_party/WebKit/Source/core/css/cssom/CSSSkew.cpp
|
| index bc03c56faf08413bdf14a302af809b70eb0d8603..7467da6ee40dae3a71ad484062c5556a8fdc54ec 100644
|
| --- a/third_party/WebKit/Source/core/css/cssom/SkewTransformComponent.cpp
|
| +++ b/third_party/WebKit/Source/core/css/cssom/CSSSkew.cpp
|
| @@ -2,14 +2,14 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "core/css/cssom/SkewTransformComponent.h"
|
| +#include "core/css/cssom/CSSSkew.h"
|
|
|
| #include "core/css/CSSPrimitiveValue.h"
|
| #include "core/css/CSSValuePool.h"
|
|
|
| namespace blink {
|
|
|
| -CSSFunctionValue* SkewTransformComponent::toCSSValue() const
|
| +CSSFunctionValue* CSSSkew::toCSSValue() const
|
| {
|
| CSSFunctionValue* result = CSSFunctionValue::create(CSSValueSkew);
|
| result->append(cssValuePool().createValue(m_ax, CSSPrimitiveValue::UnitType::Number));
|
|
|