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

Unified Diff: third_party/WebKit/Source/platform/transforms/ScaleTransformOperation.h

Issue 2519333004: Don't use post multiplication on transforms with compatible pairs of operations (Closed)
Patch Set: Rename Created 4 years 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/platform/transforms/ScaleTransformOperation.h
diff --git a/third_party/WebKit/Source/platform/transforms/ScaleTransformOperation.h b/third_party/WebKit/Source/platform/transforms/ScaleTransformOperation.h
index b136986a558b1db645816b5db2d9d1de013e0e20..8ffb2ebe12fac2f71f4096f758d2df06e06fd06a 100644
--- a/third_party/WebKit/Source/platform/transforms/ScaleTransformOperation.h
+++ b/third_party/WebKit/Source/platform/transforms/ScaleTransformOperation.h
@@ -65,6 +65,7 @@ class PLATFORM_EXPORT ScaleTransformOperation final
private:
OperationType type() const override { return m_type; }
+ OperationType primitiveType() const final { return Scale3D; }
bool operator==(const TransformOperation& o) const override {
if (!isSameType(o))

Powered by Google App Engine
This is Rietveld 408576698