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

Side by Side Diff: third_party/WebKit/Source/core/animation/NonInterpolableValue.h

Issue 2314443002: Code health: Add type checks to CSSLengthInterpolationType::nonInterpolableValuesAreCompatible() (Closed)
Patch Set: Simplify macro Created 4 years, 3 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 unified diff | Download patch
« no previous file with comments | « third_party/WebKit/Source/core/animation/CSSLengthInterpolationType.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef NonInterpolableValue_h 5 #ifndef NonInterpolableValue_h
6 #define NonInterpolableValue_h 6 #define NonInterpolableValue_h
7 7
8 #include "wtf/RefCounted.h" 8 #include "wtf/RefCounted.h"
9 9
10 namespace blink { 10 namespace blink {
(...skipping 10 matching lines...) Expand all
21 // These macros provide safe downcasts of NonInterpolableValue subclasses with d ebug assertions. 21 // These macros provide safe downcasts of NonInterpolableValue subclasses with d ebug assertions.
22 // See CSSValueInterpolationType.cpp for example usage. 22 // See CSSValueInterpolationType.cpp for example usage.
23 #define DECLARE_NON_INTERPOLABLE_VALUE_TYPE() \ 23 #define DECLARE_NON_INTERPOLABLE_VALUE_TYPE() \
24 static Type staticType; \ 24 static Type staticType; \
25 Type getType() const final { return staticType; } 25 Type getType() const final { return staticType; }
26 26
27 #define DEFINE_NON_INTERPOLABLE_VALUE_TYPE(T) \ 27 #define DEFINE_NON_INTERPOLABLE_VALUE_TYPE(T) \
28 NonInterpolableValue::Type T::staticType = &T::staticType; 28 NonInterpolableValue::Type T::staticType = &T::staticType;
29 29
30 #define DEFINE_NON_INTERPOLABLE_VALUE_TYPE_CASTS(T) \ 30 #define DEFINE_NON_INTERPOLABLE_VALUE_TYPE_CASTS(T) \
31 DEFINE_TYPE_CASTS(T, NonInterpolableValue, value, value->getType() == T::sta ticType, value.getType() == T::staticType); 31 inline bool is##T(const NonInterpolableValue* value) { return !value || valu e->getType() == T::staticType; } \
32 DEFINE_TYPE_CASTS(T, NonInterpolableValue, value, is##T(value), is##T(&value ));
33
32 34
33 } // namespace blink 35 } // namespace blink
34 36
35 #endif // NonInterpolableValue_h 37 #endif // NonInterpolableValue_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/animation/CSSLengthInterpolationType.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698