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

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

Issue 803443002: Introduce InlinedGlobalMarkingVisitor Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years 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 | « no previous file | Source/core/svg/SVGAngle.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) 2004, 2005, 2007, 2008 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 2007, 2008 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) Research In Motion Limited 2010. All rights reserved. 4 * Copyright (C) Research In Motion Limited 2010. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 22 matching lines...) Expand all
33 33
34 enum SVGMarkerOrientType { 34 enum SVGMarkerOrientType {
35 SVGMarkerOrientUnknown = 0, 35 SVGMarkerOrientUnknown = 0,
36 SVGMarkerOrientAuto, 36 SVGMarkerOrientAuto,
37 SVGMarkerOrientAngle, 37 SVGMarkerOrientAngle,
38 SVGMarkerOrientAutoStartReverse 38 SVGMarkerOrientAutoStartReverse
39 }; 39 };
40 template<> const SVGEnumerationStringEntries& getStaticStringEntries<SVGMarkerOr ientType>(); 40 template<> const SVGEnumerationStringEntries& getStaticStringEntries<SVGMarkerOr ientType>();
41 template<> unsigned short getMaxExposedEnumValue<SVGMarkerOrientType>(); 41 template<> unsigned short getMaxExposedEnumValue<SVGMarkerOrientType>();
42 42
43 class SVGMarkerOrientEnumeration : public SVGEnumeration<SVGMarkerOrientType> { 43 class GC_PLUGIN_IGNORE("") SVGMarkerOrientEnumeration : public SVGEnumeration<SV GMarkerOrientType> {
44 public: 44 public:
45 static PassRefPtrWillBeRawPtr<SVGMarkerOrientEnumeration> create(SVGAngle* a ngle) 45 static PassRefPtrWillBeRawPtr<SVGMarkerOrientEnumeration> create(SVGAngle* a ngle)
46 { 46 {
47 return adoptRefWillBeNoop(new SVGMarkerOrientEnumeration(angle)); 47 return adoptRefWillBeNoop(new SVGMarkerOrientEnumeration(angle));
48 } 48 }
49 49
50 virtual ~SVGMarkerOrientEnumeration(); 50 virtual ~SVGMarkerOrientEnumeration();
51 51
52 virtual void add(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*) overr ide; 52 virtual void add(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*) overr ide;
53 virtual void calculateAnimatedValue(SVGAnimationElement*, float, unsigned, P assRefPtrWillBeRawPtr<SVGPropertyBase>, PassRefPtrWillBeRawPtr<SVGPropertyBase>, PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*) override; 53 virtual void calculateAnimatedValue(SVGAnimationElement*, float, unsigned, P assRefPtrWillBeRawPtr<SVGPropertyBase>, PassRefPtrWillBeRawPtr<SVGPropertyBase>, PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*) override;
54 virtual float calculateDistance(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVG Element*) override; 54 virtual float calculateDistance(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVG Element*) override;
55 55
56 virtual void trace(Visitor*) override; 56 DECLARE_TRACE(virtual,override);
57 57
58 private: 58 private:
59 SVGMarkerOrientEnumeration(SVGAngle*); 59 SVGMarkerOrientEnumeration(SVGAngle*);
60 60
61 virtual void notifyChange() override; 61 virtual void notifyChange() override;
62 62
63 RawPtrWillBeMember<SVGAngle> m_angle; 63 RawPtrWillBeMember<SVGAngle> m_angle;
64 }; 64 };
65 65
66 class SVGAngle : public SVGPropertyHelper<SVGAngle> { 66 class GC_PLUGIN_IGNORE("") SVGAngle : public SVGPropertyHelper<SVGAngle> {
67 public: 67 public:
68 typedef SVGAngleTearOff TearOffType; 68 typedef SVGAngleTearOff TearOffType;
69 69
70 enum SVGAngleType { 70 enum SVGAngleType {
71 SVG_ANGLETYPE_UNKNOWN = 0, 71 SVG_ANGLETYPE_UNKNOWN = 0,
72 SVG_ANGLETYPE_UNSPECIFIED = 1, 72 SVG_ANGLETYPE_UNSPECIFIED = 1,
73 SVG_ANGLETYPE_DEG = 2, 73 SVG_ANGLETYPE_DEG = 2,
74 SVG_ANGLETYPE_RAD = 3, 74 SVG_ANGLETYPE_RAD = 3,
75 SVG_ANGLETYPE_GRAD = 4, 75 SVG_ANGLETYPE_GRAD = 4,
76 SVG_ANGLETYPE_TURN = 5 76 SVG_ANGLETYPE_TURN = 5
(...skipping 27 matching lines...) Expand all
104 104
105 virtual String valueAsString() const override; 105 virtual String valueAsString() const override;
106 void setValueAsString(const String&, ExceptionState&); 106 void setValueAsString(const String&, ExceptionState&);
107 107
108 virtual void add(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*) overr ide; 108 virtual void add(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*) overr ide;
109 virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtrWillBeRawPtr<SVGPropertyBase> from, PassRefPtrWi llBeRawPtr<SVGPropertyBase> to, PassRefPtrWillBeRawPtr<SVGPropertyBase> toAtEndO fDurationValue, SVGElement* contextElement) override; 109 virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtrWillBeRawPtr<SVGPropertyBase> from, PassRefPtrWi llBeRawPtr<SVGPropertyBase> to, PassRefPtrWillBeRawPtr<SVGPropertyBase> toAtEndO fDurationValue, SVGElement* contextElement) override;
110 virtual float calculateDistance(PassRefPtrWillBeRawPtr<SVGPropertyBase> to, SVGElement* contextElement) override; 110 virtual float calculateDistance(PassRefPtrWillBeRawPtr<SVGPropertyBase> to, SVGElement* contextElement) override;
111 111
112 static AnimatedPropertyType classType() { return AnimatedAngle; } 112 static AnimatedPropertyType classType() { return AnimatedAngle; }
113 113
114 virtual void trace(Visitor*) override; 114 DECLARE_TRACE(virtual,override);
115 115
116 private: 116 private:
117 SVGAngle(); 117 SVGAngle();
118 SVGAngle(SVGAngleType, float, SVGMarkerOrientType); 118 SVGAngle(SVGAngleType, float, SVGMarkerOrientType);
119 119
120 void assign(const SVGAngle&); 120 void assign(const SVGAngle&);
121 121
122 SVGAngleType m_unitType; 122 SVGAngleType m_unitType;
123 float m_valueInSpecifiedUnits; 123 float m_valueInSpecifiedUnits;
124 RefPtrWillBeMember<SVGMarkerOrientEnumeration> m_orientType; 124 RefPtrWillBeMember<SVGMarkerOrientEnumeration> m_orientType;
125 }; 125 };
126 126
127 inline PassRefPtrWillBeRawPtr<SVGAngle> toSVGAngle(PassRefPtrWillBeRawPtr<SVGPro pertyBase> passBase) 127 inline PassRefPtrWillBeRawPtr<SVGAngle> toSVGAngle(PassRefPtrWillBeRawPtr<SVGPro pertyBase> passBase)
128 { 128 {
129 RefPtrWillBeRawPtr<SVGPropertyBase> base = passBase; 129 RefPtrWillBeRawPtr<SVGPropertyBase> base = passBase;
130 ASSERT(base->type() == SVGAngle::classType()); 130 ASSERT(base->type() == SVGAngle::classType());
131 return static_pointer_cast<SVGAngle>(base.release()); 131 return static_pointer_cast<SVGAngle>(base.release());
132 } 132 }
133 133
134 } // namespace blink 134 } // namespace blink
135 135
136 #endif // SVGAngle_h 136 #endif // SVGAngle_h
OLDNEW
« no previous file with comments | « no previous file | Source/core/svg/SVGAngle.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698