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

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

Issue 152853003: Web Animations API: Bindings for TimedItem.specified with readonly attributes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rename TimedItemTiming.idl to Timing.idl Created 6 years, 10 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
« no previous file with comments | « Source/core/animation/TimedItem.idl ('k') | Source/core/animation/TimedItemTiming.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef TimedItemTiming_h
6 #define TimedItemTiming_h
7
8 #include "wtf/RefCounted.h"
9 #include "wtf/text/WTFString.h"
10
11 namespace WebCore {
12
13 class TimedItem;
14
15 class TimedItemTiming : public RefCounted<TimedItemTiming> {
16 public:
17 static PassRefPtr<TimedItemTiming> create(TimedItem* parent);
dstockwell 2014/02/13 01:34:50 The param and member are never null, can be a refe
rjwright 2014/02/13 02:03:06 Done.
18 double delay();
19 double endDelay();
20 String fill();
21 double iterationStart();
22 double iterations();
23 void duration(String propertyName, bool& element0Enabled, double& element0, bool& element1Enambled, String& element1);
24 double playbackRate();
25 String direction();
26 String easing();
27 private:
28 TimedItem* m_parent;
29 TimedItemTiming(TimedItem* parent);
30 };
31
32 } // namespace WebCore
33
34 #endif
OLDNEW
« no previous file with comments | « Source/core/animation/TimedItem.idl ('k') | Source/core/animation/TimedItemTiming.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698