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

Unified Diff: Source/core/svg/SVGAnimationElement.h

Issue 1088933005: Throw exception if querying SVGAnimationElement with unresolved interval (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 8 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 | « LayoutTests/svg/dom/SVGAnimationElement-exceptions.html ('k') | Source/core/svg/SVGAnimationElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGAnimationElement.h
diff --git a/Source/core/svg/SVGAnimationElement.h b/Source/core/svg/SVGAnimationElement.h
index 8b3053d54167940cafd5ec45122b38435c2f1d4b..9dcce6b37f5e04477c2dc711f1b9466a57e5ba1a 100644
--- a/Source/core/svg/SVGAnimationElement.h
+++ b/Source/core/svg/SVGAnimationElement.h
@@ -32,6 +32,8 @@
namespace blink {
+class ExceptionState;
+
enum AnimationMode {
NoAnimation,
FromToAnimation,
@@ -60,9 +62,9 @@ class SVGAnimationElement : public SVGSMILElement {
DEFINE_WRAPPERTYPEINFO();
public:
// SVGAnimationElement
- float getStartTime() const;
+ float getStartTime(ExceptionState&) const;
float getCurrentTime() const;
- float getSimpleDuration() const;
+ float getSimpleDuration(ExceptionState&) const;
void beginElement();
void beginElementAt(float offset);
« no previous file with comments | « LayoutTests/svg/dom/SVGAnimationElement-exceptions.html ('k') | Source/core/svg/SVGAnimationElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698