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

Unified Diff: third_party/WebKit/Source/core/css/cssom/CSSSkew.h

Issue 2018313003: Typed CSSOM: Rename Skew and SkewTransformComponent to CSSSkew (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/core/core.gypi ('k') | third_party/WebKit/Source/core/css/cssom/CSSSkew.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/css/cssom/CSSSkew.h
diff --git a/third_party/WebKit/Source/core/css/cssom/SkewTransformComponent.h b/third_party/WebKit/Source/core/css/cssom/CSSSkew.h
similarity index 64%
rename from third_party/WebKit/Source/core/css/cssom/SkewTransformComponent.h
rename to third_party/WebKit/Source/core/css/cssom/CSSSkew.h
index a6fd9bcd1ea4c0aa879baa7c4abcbc86f0fa8176..de7a224eea314059cb16d985262e5c9abe74bf8e 100644
--- a/third_party/WebKit/Source/core/css/cssom/SkewTransformComponent.h
+++ b/third_party/WebKit/Source/core/css/cssom/CSSSkew.h
@@ -2,21 +2,21 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef SkewTransformComponent_h
-#define SkewTransformComponent_h
+#ifndef CSSSkew_h
+#define CSSSkew_h
#include "core/css/cssom/MatrixTransformComponent.h"
#include "core/css/cssom/TransformComponent.h"
namespace blink {
-class CORE_EXPORT SkewTransformComponent final : public TransformComponent {
- WTF_MAKE_NONCOPYABLE(SkewTransformComponent);
+class CORE_EXPORT CSSSkew final : public TransformComponent {
+ WTF_MAKE_NONCOPYABLE(CSSSkew);
DEFINE_WRAPPERTYPEINFO();
public:
- static SkewTransformComponent* create(double ax, double ay)
+ static CSSSkew* create(double ax, double ay)
{
- return new SkewTransformComponent(ax, ay);
+ return new CSSSkew(ax, ay);
}
double ax() const { return m_ax; }
@@ -32,7 +32,7 @@ public:
CSSFunctionValue* toCSSValue() const override;
private:
- SkewTransformComponent(double ax, double ay) : TransformComponent(), m_ax(ax), m_ay(ay) { }
+ CSSSkew(double ax, double ay) : TransformComponent(), m_ax(ax), m_ay(ay) { }
double m_ax;
double m_ay;
« no previous file with comments | « third_party/WebKit/Source/core/core.gypi ('k') | third_party/WebKit/Source/core/css/cssom/CSSSkew.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698