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

Unified Diff: Source/platform/transforms/RotateTransformOperation.h

Issue 328333003: Adding Blink-side 3d Box and Bounds calculations to TransformOperations (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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: Source/platform/transforms/RotateTransformOperation.h
diff --git a/Source/platform/transforms/RotateTransformOperation.h b/Source/platform/transforms/RotateTransformOperation.h
index 83cd81234706c1e392a9975353734f664ee7945b..747070715e0468eb1b0f47847f60cbe971a10bd5 100644
--- a/Source/platform/transforms/RotateTransformOperation.h
+++ b/Source/platform/transforms/RotateTransformOperation.h
@@ -46,10 +46,11 @@ public:
double z() const { return m_z; }
double angle() const { return m_angle; }
+ virtual bool isCompatibleType(const TransformOperation& other) const;
+ virtual OperationType type() const OVERRIDE { return m_type; }
private:
virtual bool isIdentity() const OVERRIDE { return !m_angle; }
- virtual OperationType type() const OVERRIDE { return m_type; }
virtual bool operator==(const TransformOperation& o) const OVERRIDE
{

Powered by Google App Engine
This is Rietveld 408576698