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

Side by Side Diff: Source/core/svg/SVGAnimationElement.h

Issue 478243002: bindings: Adds virtual ScriptWrappable::wrap method. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Synced. Created 6 years, 3 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 | « Source/core/svg/SVGAnimateTransformElement.h ('k') | Source/core/svg/SVGCircleElement.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) 2004, 2005 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org>
4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> 4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org>
5 * Copyright (C) 2008 Apple Inc. All rights reserved. 5 * Copyright (C) 2008 Apple Inc. All rights reserved.
6 * Copyright (C) 2008 Cameron McCormack <cam@mcc.id.au> 6 * Copyright (C) 2008 Cameron McCormack <cam@mcc.id.au>
7 * Copyright (C) Research In Motion Limited 2011. All rights reserved. 7 * Copyright (C) Research In Motion Limited 2011. All rights reserved.
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 }; 50 };
51 51
52 enum CalcMode { 52 enum CalcMode {
53 CalcModeDiscrete, 53 CalcModeDiscrete,
54 CalcModeLinear, 54 CalcModeLinear,
55 CalcModePaced, 55 CalcModePaced,
56 CalcModeSpline 56 CalcModeSpline
57 }; 57 };
58 58
59 class SVGAnimationElement : public SVGSMILElement { 59 class SVGAnimationElement : public SVGSMILElement {
60 DEFINE_WRAPPERTYPEINFO();
60 public: 61 public:
61 // SVGAnimationElement 62 // SVGAnimationElement
62 float getStartTime() const; 63 float getStartTime() const;
63 float getCurrentTime() const; 64 float getCurrentTime() const;
64 float getSimpleDuration() const; 65 float getSimpleDuration() const;
65 66
66 void beginElement(); 67 void beginElement();
67 void beginElementAt(float offset); 68 void beginElementAt(float offset);
68 void endElement(); 69 void endElement();
69 void endElementAt(float offset); 70 void endElementAt(float offset);
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 String m_lastValuesAnimationFrom; 205 String m_lastValuesAnimationFrom;
205 String m_lastValuesAnimationTo; 206 String m_lastValuesAnimationTo;
206 bool m_hasInvalidCSSAttributeType; 207 bool m_hasInvalidCSSAttributeType;
207 CalcMode m_calcMode; 208 CalcMode m_calcMode;
208 AnimationMode m_animationMode; 209 AnimationMode m_animationMode;
209 }; 210 };
210 211
211 } // namespace blink 212 } // namespace blink
212 213
213 #endif // SVGAnimationElement_h 214 #endif // SVGAnimationElement_h
OLDNEW
« no previous file with comments | « Source/core/svg/SVGAnimateTransformElement.h ('k') | Source/core/svg/SVGCircleElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698