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

Side by Side Diff: third_party/WebKit/Source/core/svg/SVGNumberOptionalNumber.h

Issue 1418193007: Web Animations: Add SVGNumberOptionalNumberInterpolationType (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@_svgIntegerInterpolationType
Patch Set: neutralKeyframe Created 5 years, 1 month 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 | « third_party/WebKit/Source/core/core.gypi ('k') | no next file » | 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) 2014 Google Inc. All rights reserved. 2 * Copyright (C) 2014 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 52
53 String valueAsString() const override; 53 String valueAsString() const override;
54 void setValueAsString(const String&, ExceptionState&); 54 void setValueAsString(const String&, ExceptionState&);
55 55
56 void add(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*) override; 56 void add(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*) override;
57 void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtrWillBeRawPtr<SVGPropertyBase> from, PassRefPtrWillBeRawP tr<SVGPropertyBase> to, PassRefPtrWillBeRawPtr<SVGPropertyBase> toAtEndOfDuratio nValue, SVGElement* contextElement) override; 57 void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtrWillBeRawPtr<SVGPropertyBase> from, PassRefPtrWillBeRawP tr<SVGPropertyBase> to, PassRefPtrWillBeRawPtr<SVGPropertyBase> toAtEndOfDuratio nValue, SVGElement* contextElement) override;
58 float calculateDistance(PassRefPtrWillBeRawPtr<SVGPropertyBase> to, SVGEleme nt* contextElement) override; 58 float calculateDistance(PassRefPtrWillBeRawPtr<SVGPropertyBase> to, SVGEleme nt* contextElement) override;
59 59
60 static AnimatedPropertyType classType() { return AnimatedNumberOptionalNumbe r; } 60 static AnimatedPropertyType classType() { return AnimatedNumberOptionalNumbe r; }
61 61
62 PassRefPtrWillBeRawPtr<SVGNumber> firstNumber() { return m_firstNumber; } 62 PassRefPtrWillBeRawPtr<SVGNumber> firstNumber() const { return m_firstNumber ; }
63 PassRefPtrWillBeRawPtr<SVGNumber> secondNumber() { return m_secondNumber; } 63 PassRefPtrWillBeRawPtr<SVGNumber> secondNumber() const { return m_secondNumb er; }
64 64
65 DECLARE_VIRTUAL_TRACE(); 65 DECLARE_VIRTUAL_TRACE();
66 66
67 protected: 67 protected:
68 SVGNumberOptionalNumber(PassRefPtrWillBeRawPtr<SVGNumber> firstNumber, PassR efPtrWillBeRawPtr<SVGNumber> secondNumber); 68 SVGNumberOptionalNumber(PassRefPtrWillBeRawPtr<SVGNumber> firstNumber, PassR efPtrWillBeRawPtr<SVGNumber> secondNumber);
69 69
70 RefPtrWillBeMember<SVGNumber> m_firstNumber; 70 RefPtrWillBeMember<SVGNumber> m_firstNumber;
71 RefPtrWillBeMember<SVGNumber> m_secondNumber; 71 RefPtrWillBeMember<SVGNumber> m_secondNumber;
72 }; 72 };
73 73
74 DEFINE_SVG_PROPERTY_TYPE_CASTS(SVGNumberOptionalNumber); 74 DEFINE_SVG_PROPERTY_TYPE_CASTS(SVGNumberOptionalNumber);
75 75
76 } // namespace blink 76 } // namespace blink
77 77
78 #endif // SVGNumberOptionalNumber_h 78 #endif // SVGNumberOptionalNumber_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/core.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698