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

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

Issue 293893003: Web Animations: Rename TimedItem to AnimationSource (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update expectations. Created 6 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/AnimationSourceTest.cpp ('k') | Source/core/animation/AnimationSourceTiming.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/AnimationSourceTiming.h
diff --git a/Source/core/animation/TimedItemTiming.h b/Source/core/animation/AnimationSourceTiming.h
similarity index 69%
rename from Source/core/animation/TimedItemTiming.h
rename to Source/core/animation/AnimationSourceTiming.h
index 5ea2a3da3dbf407b29b47991d7682aca5decddf1..e428f855b84db52566200e3e94167515edc736c7 100644
--- a/Source/core/animation/TimedItemTiming.h
+++ b/Source/core/animation/AnimationSourceTiming.h
@@ -2,18 +2,18 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef TimedItemTiming_h
-#define TimedItemTiming_h
+#ifndef AnimationSourceTiming_h
+#define AnimationSourceTiming_h
-#include "core/animation/TimedItem.h"
+#include "core/animation/AnimationSource.h"
#include "wtf/RefCounted.h"
#include "wtf/text/WTFString.h"
namespace WebCore {
-class TimedItemTiming : public RefCountedWillBeGarbageCollectedFinalized<TimedItemTiming> {
+class AnimationSourceTiming : public RefCountedWillBeGarbageCollectedFinalized<AnimationSourceTiming> {
public:
- static PassRefPtrWillBeRawPtr<TimedItemTiming> create(TimedItem* parent);
+ static PassRefPtrWillBeRawPtr<AnimationSourceTiming> create(AnimationSource* parent);
double delay();
double endDelay();
String fill();
@@ -37,8 +37,8 @@ public:
void trace(Visitor*);
private:
- RefPtrWillBeMember<TimedItem> m_parent;
- explicit TimedItemTiming(TimedItem*);
+ RefPtrWillBeMember<AnimationSource> m_parent;
+ explicit AnimationSourceTiming(AnimationSource*);
};
} // namespace WebCore
« no previous file with comments | « Source/core/animation/AnimationSourceTest.cpp ('k') | Source/core/animation/AnimationSourceTiming.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698