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

Unified Diff: third_party/WebKit/Source/core/css/cssom/CSSTransformComponent.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/CSSTransformComponent.h
diff --git a/third_party/WebKit/Source/core/css/cssom/CSSTransformComponent.h b/third_party/WebKit/Source/core/css/cssom/CSSTransformComponent.h
index 5b2226e346feac64b1beb1caf80b79569e2390e5..f607337dc58b7d0058ace3c5a961f50242e701a0 100644
--- a/third_party/WebKit/Source/core/css/cssom/CSSTransformComponent.h
+++ b/third_party/WebKit/Source/core/css/cssom/CSSTransformComponent.h
@@ -12,7 +12,7 @@
namespace blink {
-class CSSMatrixComponent;
+class DOMMatrix;
class CORE_EXPORT CSSTransformComponent
: public GarbageCollectedFinalized<CSSTransformComponent>,
@@ -58,7 +58,7 @@ class CORE_EXPORT CSSTransformComponent
}
virtual CSSFunctionValue* ToCSSValue() const = 0;
- virtual CSSMatrixComponent* asMatrix() const = 0;
+ virtual DOMMatrix* AsMatrix() const = 0;
DEFINE_INLINE_VIRTUAL_TRACE() {}

Powered by Google App Engine
This is Rietveld 408576698