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

Side by Side Diff: Source/core/animation/AnimatableValue.h

Issue 216603008: Revert "Web Animations: Introduce String based KeyframeEffectModel" (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/core/animation/AnimatableValueKeyframe.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « no previous file | Source/core/animation/AnimatableValueKeyframe.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698