| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |