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/CSSTranslation.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
« no previous file with comments | « third_party/WebKit/Source/core/css/cssom/CSSTransformValue.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/css/cssom/CSSTranslation.h
diff --git a/third_party/WebKit/Source/core/css/cssom/CSSTranslation.h b/third_party/WebKit/Source/core/css/cssom/CSSTranslation.h
index d4e2d2b47b95e01d42722dce8bfa925858544e22..db649400ab90ac1404eaa36332bf0413f94d034c 100644
--- a/third_party/WebKit/Source/core/css/cssom/CSSTranslation.h
+++ b/third_party/WebKit/Source/core/css/cssom/CSSTranslation.h
@@ -10,6 +10,7 @@
namespace blink {
class CSSNumericValue;
+class DOMMatrix;
class ExceptionState;
class CORE_EXPORT CSSTranslation final : public CSSTransformComponent {
@@ -39,8 +40,8 @@ class CORE_EXPORT CSSTranslation final : public CSSTransformComponent {
return Is2D() ? kTranslationType : kTranslation3DType;
}
- // TODO: Implement asMatrix for CSSTranslation.
- CSSMatrixComponent* asMatrix() const override { return nullptr; }
+ // TODO: Implement AsMatrix for CSSTranslation.
+ DOMMatrix* AsMatrix() const override { return nullptr; }
CSSFunctionValue* ToCSSValue() const override;
« no previous file with comments | « third_party/WebKit/Source/core/css/cssom/CSSTransformValue.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698