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

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

Issue 148523016: Move most of the [Pass]RefPtr's of CSSPrimitiveValue to our transition types. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Sync to latest change Created 6 years, 10 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/html/HTMLHRElement.cpp ('k') | Source/core/svg/SVGLength.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, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 2006, 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 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details. 13 * Library General Public License for more details.
14 * 14 *
15 * You should have received a copy of the GNU Library General Public License 15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to 16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA. 18 * Boston, MA 02110-1301, USA.
19 */ 19 */
20 20
21 #ifndef SVGLength_h 21 #ifndef SVGLength_h
22 #define SVGLength_h 22 #define SVGLength_h
23 23
24 #include "bindings/v8/ExceptionMessages.h" 24 #include "bindings/v8/ExceptionMessages.h"
25 #include "bindings/v8/ExceptionStatePlaceholder.h" 25 #include "bindings/v8/ExceptionStatePlaceholder.h"
26 #include "core/svg/SVGLengthContext.h" 26 #include "core/svg/SVGLengthContext.h"
27 #include "core/svg/properties/NewSVGProperty.h" 27 #include "core/svg/properties/NewSVGProperty.h"
28 #include "heap/Handle.h"
28 29
29 namespace WebCore { 30 namespace WebCore {
30 31
31 class CSSPrimitiveValue; 32 class CSSPrimitiveValue;
32 class ExceptionState; 33 class ExceptionState;
33 class QualifiedName; 34 class QualifiedName;
34 35
35 enum SVGLengthNegativeValuesMode { 36 enum SVGLengthNegativeValuesMode {
36 AllowNegativeLengths, 37 AllowNegativeLengths,
37 ForbidNegativeLengths 38 ForbidNegativeLengths
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 || m_unitType == LengthTypeEMS 84 || m_unitType == LengthTypeEMS
84 || m_unitType == LengthTypeEXS; 85 || m_unitType == LengthTypeEXS;
85 } 86 }
86 87
87 bool isZero() const 88 bool isZero() const
88 { 89 {
89 return !m_valueInSpecifiedUnits; 90 return !m_valueInSpecifiedUnits;
90 } 91 }
91 92
92 static PassRefPtr<SVGLength> fromCSSPrimitiveValue(CSSPrimitiveValue*); 93 static PassRefPtr<SVGLength> fromCSSPrimitiveValue(CSSPrimitiveValue*);
93 static PassRefPtr<CSSPrimitiveValue> toCSSPrimitiveValue(PassRefPtr<SVGLengt h>); 94 static PassRefPtrWillBeRawPtr<CSSPrimitiveValue> toCSSPrimitiveValue(PassRef Ptr<SVGLength>);
94 static SVGLengthMode lengthModeForAnimatedLengthAttribute(const QualifiedNam e&); 95 static SVGLengthMode lengthModeForAnimatedLengthAttribute(const QualifiedNam e&);
95 96
96 PassRefPtr<SVGLength> blend(PassRefPtr<SVGLength> from, float progress) cons t; 97 PassRefPtr<SVGLength> blend(PassRefPtr<SVGLength> from, float progress) cons t;
97 98
98 virtual void add(PassRefPtr<NewSVGPropertyBase>, SVGElement*) OVERRIDE; 99 virtual void add(PassRefPtr<NewSVGPropertyBase>, SVGElement*) OVERRIDE;
99 virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtr<NewSVGPropertyBase> from, PassRefPtr<NewSVGProp ertyBase> to, PassRefPtr<NewSVGPropertyBase> toAtEndOfDurationValue, SVGElement* contextElement) OVERRIDE; 100 virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtr<NewSVGPropertyBase> from, PassRefPtr<NewSVGProp ertyBase> to, PassRefPtr<NewSVGPropertyBase> toAtEndOfDurationValue, SVGElement* contextElement) OVERRIDE;
100 virtual float calculateDistance(PassRefPtr<NewSVGPropertyBase> to, SVGElemen t* contextElement) OVERRIDE; 101 virtual float calculateDistance(PassRefPtr<NewSVGPropertyBase> to, SVGElemen t* contextElement) OVERRIDE;
101 102
102 static AnimatedPropertyType classType() { return AnimatedLength; } 103 static AnimatedPropertyType classType() { return AnimatedLength; }
103 104
104 private: 105 private:
105 SVGLength(SVGLengthMode); 106 SVGLength(SVGLengthMode);
106 SVGLength(const SVGLength&); 107 SVGLength(const SVGLength&);
107 108
108 float m_valueInSpecifiedUnits; 109 float m_valueInSpecifiedUnits;
109 unsigned m_unitMode : 2; 110 unsigned m_unitMode : 2;
110 unsigned m_unitType : 4; 111 unsigned m_unitType : 4;
111 }; 112 };
112 113
113 inline PassRefPtr<SVGLength> toSVGLength(PassRefPtr<NewSVGPropertyBase> passBase ) 114 inline PassRefPtr<SVGLength> toSVGLength(PassRefPtr<NewSVGPropertyBase> passBase )
114 { 115 {
115 RefPtr<NewSVGPropertyBase> base = passBase; 116 RefPtr<NewSVGPropertyBase> base = passBase;
116 ASSERT(base->type() == SVGLength::classType()); 117 ASSERT(base->type() == SVGLength::classType());
117 return static_pointer_cast<SVGLength>(base.release()); 118 return static_pointer_cast<SVGLength>(base.release());
118 } 119 }
119 120
120 } // namespace WebCore 121 } // namespace WebCore
121 122
122 #endif // SVGLength_h 123 #endif // SVGLength_h
OLDNEW
« no previous file with comments | « Source/core/html/HTMLHRElement.cpp ('k') | Source/core/svg/SVGLength.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698