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

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

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
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));
« no previous file with comments | « third_party/WebKit/Source/core/css/cssom/CSSSkew.h ('k') | third_party/WebKit/Source/core/css/cssom/CSSSkew.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698