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

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

Issue 1196913005: Implement animations for Independent CSS Transform Properties (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix static cast predicates Created 5 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/TransformOperation.h
diff --git a/Source/platform/transforms/TransformOperation.h b/Source/platform/transforms/TransformOperation.h
index b131f3ae5811df844eeaa1fc1c3b6cc3a2b3a2cd..2aed19c924c9924bfd5aa5bf934def35062d0f58 100644
--- a/Source/platform/transforms/TransformOperation.h
+++ b/Source/platform/transforms/TransformOperation.h
@@ -81,8 +81,12 @@ public:
}
virtual bool dependsOnBoxSize() const { return false; }
+
alancutter (OOO until 2018) 2015/06/26 02:56:15 No need for extra newline.
soonm 2015/06/26 03:02:12 Done.
};
+#define DEFINE_TRANSFORM_TYPE_CASTS(thisType) \
+ DEFINE_TYPE_CASTS(thisType, TransformOperation, transform, thisType::isMatchingOperationType(transform->type()), thisType::isMatchingOperationType(transform.type()))
+
} // namespace blink
#endif // TransformOperation_h

Powered by Google App Engine
This is Rietveld 408576698