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

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

Issue 1976493002: Typed CSSOM: Rename Rotation and RotationTransformComponent to CSSRotation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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/CSSRotation.cpp
diff --git a/third_party/WebKit/Source/core/css/cssom/RotationTransformComponent.cpp b/third_party/WebKit/Source/core/css/cssom/CSSRotation.cpp
similarity index 87%
rename from third_party/WebKit/Source/core/css/cssom/RotationTransformComponent.cpp
rename to third_party/WebKit/Source/core/css/cssom/CSSRotation.cpp
index 177d345e85c433be76ea7a4096bd53b031c14eb0..697cb4037dd55bd74466dcbd02d0f70b386d6bd2 100644
--- a/third_party/WebKit/Source/core/css/cssom/RotationTransformComponent.cpp
+++ b/third_party/WebKit/Source/core/css/cssom/CSSRotation.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/RotationTransformComponent.h"
+#include "core/css/cssom/CSSRotation.h"
#include "core/css/CSSPrimitiveValue.h"
#include "core/css/CSSValuePool.h"
namespace blink {
-CSSFunctionValue* RotationTransformComponent::toCSSValue() const
+CSSFunctionValue* CSSRotation::toCSSValue() const
{
CSSFunctionValue* result = CSSFunctionValue::create(m_is2D ? CSSValueRotate : CSSValueRotate3d);
if (!m_is2D) {
« no previous file with comments | « third_party/WebKit/Source/core/css/cssom/CSSRotation.h ('k') | third_party/WebKit/Source/core/css/cssom/CSSRotation.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698