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

Unified Diff: Source/core/animation/EffectModel.h

Issue 1113173003: Web Animations: Update naming to reflect spec changes (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: No, really. Created 5 years, 7 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
« no previous file with comments | « Source/core/animation/EffectInputTest.cpp ('k') | Source/core/animation/EffectModel.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/EffectModel.h
diff --git a/Source/core/animation/AnimationEffect.h b/Source/core/animation/EffectModel.h
similarity index 89%
copy from Source/core/animation/AnimationEffect.h
copy to Source/core/animation/EffectModel.h
index ff659913b6b960d45c763fe41fec2a33425c42f7..2e131940ceaea078f08782e6745e055e3ffa0679 100644
--- a/Source/core/animation/AnimationEffect.h
+++ b/Source/core/animation/EffectModel.h
@@ -28,8 +28,8 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef AnimationEffect_h
-#define AnimationEffect_h
+#ifndef EffectModel_h
+#define EffectModel_h
#include "bindings/core/v8/ScriptWrappable.h"
#include "core/CSSPropertyNames.h"
@@ -44,7 +44,7 @@ namespace blink {
class Interpolation;
-class CORE_EXPORT AnimationEffect : public RefCountedWillBeGarbageCollectedFinalized<AnimationEffect>, public ScriptWrappable {
+class CORE_EXPORT EffectModel : public RefCountedWillBeGarbageCollectedFinalized<EffectModel>, public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
enum CompositeOperation {
@@ -52,8 +52,8 @@ public:
CompositeAdd,
};
- AnimationEffect() { }
- virtual ~AnimationEffect() { }
+ EffectModel() { }
+ virtual ~EffectModel() { }
virtual void sample(int iteration, double fraction, double iterationDuration, OwnPtrWillBeRawPtr<WillBeHeapVector<RefPtrWillBeMember<Interpolation>>>&) const = 0;
virtual bool affects(PropertyHandle) const { return false; };
@@ -64,4 +64,4 @@ public:
} // namespace blink
-#endif // AnimationEffect_h
+#endif // EffectModel_h
« no previous file with comments | « Source/core/animation/EffectInputTest.cpp ('k') | Source/core/animation/EffectModel.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698