OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 template <class T> | 129 template <class T> |
130 static PassRefPtrWillBeRawPtr<T> takeConstRef(const T* value) { return PassR
efPtrWillBeRawPtr<T>(const_cast<T*>(value)); } | 130 static PassRefPtrWillBeRawPtr<T> takeConstRef(const T* value) { return PassR
efPtrWillBeRawPtr<T>(const_cast<T*>(value)); } |
131 | 131 |
132 private: | 132 private: |
133 virtual AnimatableType type() const = 0; | 133 virtual AnimatableType type() const = 0; |
134 // Implementations can assume that the object being compared has the same ty
pe as the object this is called on | 134 // Implementations can assume that the object being compared has the same ty
pe as the object this is called on |
135 virtual bool equalTo(const AnimatableValue*) const = 0; | 135 virtual bool equalTo(const AnimatableValue*) const = 0; |
136 | 136 |
137 virtual double distanceTo(const AnimatableValue*) const; | 137 virtual double distanceTo(const AnimatableValue*) const; |
138 | 138 |
139 template <class Keyframe> friend class KeyframeEffectModel; | 139 friend class KeyframeEffectModel; |
140 }; | 140 }; |
141 | 141 |
142 #define DEFINE_ANIMATABLE_VALUE_TYPE_CASTS(thisType, predicate) \ | 142 #define DEFINE_ANIMATABLE_VALUE_TYPE_CASTS(thisType, predicate) \ |
143 DEFINE_TYPE_CASTS(thisType, AnimatableValue, value, value->predicate, value.
predicate) | 143 DEFINE_TYPE_CASTS(thisType, AnimatableValue, value, value->predicate, value.
predicate) |
144 | 144 |
145 } // namespace WebCore | 145 } // namespace WebCore |
146 | 146 |
147 #endif // AnimatableValue_h | 147 #endif // AnimatableValue_h |
OLD | NEW |