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

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

Issue 137863007: Revert of Move most of the [Pass]RefPtr's of CSSPrimitiveValue to our transition types. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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"
29 28
30 namespace WebCore { 29 namespace WebCore {
31 30
32 class CSSPrimitiveValue; 31 class CSSPrimitiveValue;
33 class ExceptionState; 32 class ExceptionState;
34 class QualifiedName; 33 class QualifiedName;
35 34
36 enum SVGLengthNegativeValuesMode { 35 enum SVGLengthNegativeValuesMode {
37 AllowNegativeLengths, 36 AllowNegativeLengths,
38 ForbidNegativeLengths 37 ForbidNegativeLengths
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 || m_unitType == LengthTypeEMS 83 || m_unitType == LengthTypeEMS
85 || m_unitType == LengthTypeEXS; 84 || m_unitType == LengthTypeEXS;
86 } 85 }
87 86
88 bool isZero() const 87 bool isZero() const
89 { 88 {
90 return !m_valueInSpecifiedUnits; 89 return !m_valueInSpecifiedUnits;
91 } 90 }
92 91
93 static PassRefPtr<SVGLength> fromCSSPrimitiveValue(CSSPrimitiveValue*); 92 static PassRefPtr<SVGLength> fromCSSPrimitiveValue(CSSPrimitiveValue*);
94 static PassRefPtrWillBeRawPtr<CSSPrimitiveValue> toCSSPrimitiveValue(PassRef Ptr<SVGLength>); 93 static PassRefPtr<CSSPrimitiveValue> toCSSPrimitiveValue(PassRefPtr<SVGLengt h>);
95 static SVGLengthMode lengthModeForAnimatedLengthAttribute(const QualifiedNam e&); 94 static SVGLengthMode lengthModeForAnimatedLengthAttribute(const QualifiedNam e&);
96 95
97 PassRefPtr<SVGLength> blend(PassRefPtr<SVGLength> from, float progress) cons t; 96 PassRefPtr<SVGLength> blend(PassRefPtr<SVGLength> from, float progress) cons t;
98 97
99 virtual void add(PassRefPtr<NewSVGPropertyBase>, SVGElement*) OVERRIDE; 98 virtual void add(PassRefPtr<NewSVGPropertyBase>, SVGElement*) OVERRIDE;
100 virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtr<NewSVGPropertyBase> from, PassRefPtr<NewSVGProp ertyBase> to, PassRefPtr<NewSVGPropertyBase> toAtEndOfDurationValue, SVGElement* contextElement) OVERRIDE; 99 virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtr<NewSVGPropertyBase> from, PassRefPtr<NewSVGProp ertyBase> to, PassRefPtr<NewSVGPropertyBase> toAtEndOfDurationValue, SVGElement* contextElement) OVERRIDE;
101 virtual float calculateDistance(PassRefPtr<NewSVGPropertyBase> to, SVGElemen t* contextElement) OVERRIDE; 100 virtual float calculateDistance(PassRefPtr<NewSVGPropertyBase> to, SVGElemen t* contextElement) OVERRIDE;
102 101
103 static AnimatedPropertyType classType() { return AnimatedLength; } 102 static AnimatedPropertyType classType() { return AnimatedLength; }
104 103
105 private: 104 private:
106 SVGLength(SVGLengthMode); 105 SVGLength(SVGLengthMode);
107 SVGLength(const SVGLength&); 106 SVGLength(const SVGLength&);
108 107
109 float m_valueInSpecifiedUnits; 108 float m_valueInSpecifiedUnits;
110 unsigned m_unitMode : 2; 109 unsigned m_unitMode : 2;
111 unsigned m_unitType : 4; 110 unsigned m_unitType : 4;
112 }; 111 };
113 112
114 inline PassRefPtr<SVGLength> toSVGLength(PassRefPtr<NewSVGPropertyBase> passBase ) 113 inline PassRefPtr<SVGLength> toSVGLength(PassRefPtr<NewSVGPropertyBase> passBase )
115 { 114 {
116 RefPtr<NewSVGPropertyBase> base = passBase; 115 RefPtr<NewSVGPropertyBase> base = passBase;
117 ASSERT(base->type() == SVGLength::classType()); 116 ASSERT(base->type() == SVGLength::classType());
118 return static_pointer_cast<SVGLength>(base.release()); 117 return static_pointer_cast<SVGLength>(base.release());
119 } 118 }
120 119
121 } // namespace WebCore 120 } // namespace WebCore
122 121
123 #endif // SVGLength_h 122 #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