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

Unified Diff: Source/core/animation/TimedItemTiming.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/TimedItemTest.cpp ('k') | Source/core/animation/TimedItemTiming.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/TimedItemTiming.h
diff --git a/Source/core/animation/TimedItemTiming.h b/Source/core/animation/TimedItemTiming.h
deleted file mode 100644
index 5ea2a3da3dbf407b29b47991d7682aca5decddf1..0000000000000000000000000000000000000000
--- a/Source/core/animation/TimedItemTiming.h
+++ /dev/null
@@ -1,46 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// 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
-
-#include "core/animation/TimedItem.h"
-#include "wtf/RefCounted.h"
-#include "wtf/text/WTFString.h"
-
-namespace WebCore {
-
-class TimedItemTiming : public RefCountedWillBeGarbageCollectedFinalized<TimedItemTiming> {
-public:
- static PassRefPtrWillBeRawPtr<TimedItemTiming> create(TimedItem* parent);
- double delay();
- double endDelay();
- String fill();
- double iterationStart();
- double iterations();
- void getDuration(String propertyName, bool& element0Enabled, double& element0, bool& element1Enabled, String& element1);
- double playbackRate();
- String direction();
- String easing();
-
- void setDelay(double);
- void setEndDelay(double);
- void setFill(String);
- void setIterationStart(double);
- void setIterations(double);
- bool setDuration(String name, double duration);
- void setPlaybackRate(double);
- void setDirection(String);
- void setEasing(String);
-
- void trace(Visitor*);
-
-private:
- RefPtrWillBeMember<TimedItem> m_parent;
- explicit TimedItemTiming(TimedItem*);
-};
-
-} // namespace WebCore
-
-#endif
« no previous file with comments | « Source/core/animation/TimedItemTest.cpp ('k') | Source/core/animation/TimedItemTiming.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698