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

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

Issue 2933473003: Remove asMatrix as a JS-exposed method in CSSTransformComponents. (Closed)
Patch Set: update skew expectation for missing "s" Created 3 years, 6 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.h
diff --git a/third_party/WebKit/Source/core/css/cssom/CSSRotation.h b/third_party/WebKit/Source/core/css/cssom/CSSRotation.h
index f4d1827e411fc9a9954517e186deff093c2ae60d..6c3f75db139d950d5419958a2bb3215e48d315dd 100644
--- a/third_party/WebKit/Source/core/css/cssom/CSSRotation.h
+++ b/third_party/WebKit/Source/core/css/cssom/CSSRotation.h
@@ -5,12 +5,13 @@
#ifndef CSSRotation_h
#define CSSRotation_h
-#include "core/css/cssom/CSSMatrixComponent.h"
#include "core/css/cssom/CSSNumericValue.h"
#include "core/css/cssom/CSSTransformComponent.h"
namespace blink {
+class DOMMatrix;
+
class CORE_EXPORT CSSRotation final : public CSSTransformComponent {
WTF_MAKE_NONCOPYABLE(CSSRotation);
DEFINE_WRAPPERTYPEINFO();
@@ -42,7 +43,7 @@ class CORE_EXPORT CSSRotation final : public CSSTransformComponent {
return is2d_ ? kRotationType : kRotation3DType;
}
- CSSMatrixComponent* asMatrix() const override {
+ DOMMatrix* AsMatrix() const override {
return nullptr;
// TODO(meade): Implement.
// return is2d_
« no previous file with comments | « third_party/WebKit/Source/core/css/cssom/CSSPerspective.h ('k') | third_party/WebKit/Source/core/css/cssom/CSSScale.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698