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

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

Issue 208133002: [SVG] Remove "New" prefix from properties implementation. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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/SVGAnimationElement.cpp ('k') | Source/core/svg/SVGBoolean.cpp » ('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) 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 13 matching lines...) Expand all
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #ifndef SVGBoolean_h 31 #ifndef SVGBoolean_h
32 #define SVGBoolean_h 32 #define SVGBoolean_h
33 33
34 #include "core/svg/properties/NewSVGProperty.h" 34 #include "core/svg/properties/SVGProperty.h"
35 35
36 namespace WebCore { 36 namespace WebCore {
37 37
38 class SVGBoolean : public NewSVGPropertyBase { 38 class SVGBoolean : public SVGPropertyBase {
39 public: 39 public:
40 // SVGBoolean does not have a tear-off type. 40 // SVGBoolean does not have a tear-off type.
41 typedef void TearOffType; 41 typedef void TearOffType;
42 typedef bool PrimitiveType; 42 typedef bool PrimitiveType;
43 43
44 static PassRefPtr<SVGBoolean> create(bool value = false) 44 static PassRefPtr<SVGBoolean> create(bool value = false)
45 { 45 {
46 return adoptRef(new SVGBoolean(value)); 46 return adoptRef(new SVGBoolean(value));
47 } 47 }
48 48
49 PassRefPtr<SVGBoolean> clone() const { return create(m_value); } 49 PassRefPtr<SVGBoolean> clone() const { return create(m_value); }
50 virtual PassRefPtr<NewSVGPropertyBase> cloneForAnimation(const String&) cons t OVERRIDE; 50 virtual PassRefPtr<SVGPropertyBase> cloneForAnimation(const String&) const O VERRIDE;
51 51
52 virtual String valueAsString() const OVERRIDE; 52 virtual String valueAsString() const OVERRIDE;
53 void setValueAsString(const String&, ExceptionState&); 53 void setValueAsString(const String&, ExceptionState&);
54 54
55 virtual void add(PassRefPtr<NewSVGPropertyBase>, SVGElement*) OVERRIDE; 55 virtual void add(PassRefPtr<SVGPropertyBase>, SVGElement*) OVERRIDE;
56 virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtr<NewSVGPropertyBase> from, PassRefPtr<NewSVGProp ertyBase> to, PassRefPtr<NewSVGPropertyBase> toAtEndOfDurationValue, SVGElement* ) OVERRIDE; 56 virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> from, PassRefPtr<SVGPropertyBa se> to, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) OVERRID E;
57 virtual float calculateDistance(PassRefPtr<NewSVGPropertyBase> to, SVGElemen t*) OVERRIDE; 57 virtual float calculateDistance(PassRefPtr<SVGPropertyBase> to, SVGElement*) OVERRIDE;
58 58
59 bool operator==(const SVGBoolean& other) const { return m_value == other.m_v alue; } 59 bool operator==(const SVGBoolean& other) const { return m_value == other.m_v alue; }
60 bool operator!=(const SVGBoolean& other) const { return !operator==(other); } 60 bool operator!=(const SVGBoolean& other) const { return !operator==(other); }
61 61
62 bool value() const { return m_value; } 62 bool value() const { return m_value; }
63 void setValue(bool value) { m_value = value; } 63 void setValue(bool value) { m_value = value; }
64 64
65 static AnimatedPropertyType classType() { return AnimatedBoolean; } 65 static AnimatedPropertyType classType() { return AnimatedBoolean; }
66 66
67 private: 67 private:
68 SVGBoolean(bool value) 68 SVGBoolean(bool value)
69 : NewSVGPropertyBase(classType()) 69 : SVGPropertyBase(classType())
70 , m_value(value) 70 , m_value(value)
71 { 71 {
72 } 72 }
73 73
74 bool m_value; 74 bool m_value;
75 }; 75 };
76 76
77 inline PassRefPtr<SVGBoolean> toSVGBoolean(PassRefPtr<NewSVGPropertyBase> passBa se) 77 inline PassRefPtr<SVGBoolean> toSVGBoolean(PassRefPtr<SVGPropertyBase> passBase)
78 { 78 {
79 RefPtr<NewSVGPropertyBase> base = passBase; 79 RefPtr<SVGPropertyBase> base = passBase;
80 ASSERT(base->type() == SVGBoolean::classType()); 80 ASSERT(base->type() == SVGBoolean::classType());
81 return static_pointer_cast<SVGBoolean>(base.release()); 81 return static_pointer_cast<SVGBoolean>(base.release());
82 } 82 }
83 83
84 } // namespace WebCore 84 } // namespace WebCore
85 85
86 #endif // SVGBoolean_h 86 #endif // SVGBoolean_h
OLDNEW
« no previous file with comments | « Source/core/svg/SVGAnimationElement.cpp ('k') | Source/core/svg/SVGBoolean.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698