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

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

Issue 1544673003: Refactor propagation of parsing errors for SVG attributes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005, 2006, 2007 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 SVGPreserveAspectRatio_h 21 #ifndef SVGPreserveAspectRatio_h
22 #define SVGPreserveAspectRatio_h 22 #define SVGPreserveAspectRatio_h
23 23
24 #include "core/svg/SVGParsingError.h"
24 #include "core/svg/properties/SVGPropertyHelper.h" 25 #include "core/svg/properties/SVGPropertyHelper.h"
25 26
26 namespace blink { 27 namespace blink {
27 28
28 class AffineTransform; 29 class AffineTransform;
29 class FloatRect; 30 class FloatRect;
30 class SVGPreserveAspectRatioTearOff; 31 class SVGPreserveAspectRatioTearOff;
31 32
32 class SVGPreserveAspectRatio : public SVGPropertyHelper<SVGPreserveAspectRatio> { 33 class SVGPreserveAspectRatio : public SVGPropertyHelper<SVGPreserveAspectRatio> {
33 public: 34 public:
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 void setMeetOrSlice(SVGMeetOrSliceType meetOrSlice) { m_meetOrSlice = meetOr Slice; } 70 void setMeetOrSlice(SVGMeetOrSliceType meetOrSlice) { m_meetOrSlice = meetOr Slice; }
70 SVGMeetOrSliceType meetOrSlice() const { return m_meetOrSlice; } 71 SVGMeetOrSliceType meetOrSlice() const { return m_meetOrSlice; }
71 72
72 void transformRect(FloatRect& destRect, FloatRect& srcRect); 73 void transformRect(FloatRect& destRect, FloatRect& srcRect);
73 74
74 AffineTransform getCTM(float logicX, float logicY, 75 AffineTransform getCTM(float logicX, float logicY,
75 float logicWidth, float logicHeight, 76 float logicWidth, float logicHeight,
76 float physWidth, float physHeight) const; 77 float physWidth, float physHeight) const;
77 78
78 String valueAsString() const override; 79 String valueAsString() const override;
79 virtual void setValueAsString(const String&, ExceptionState&); 80 SVGParsingError setValueAsString(const String&);
80 bool parse(const UChar*& ptr, const UChar* end, bool validate); 81 bool parse(const UChar*& ptr, const UChar* end, bool validate);
81 bool parse(const LChar*& ptr, const LChar* end, bool validate); 82 bool parse(const LChar*& ptr, const LChar* end, bool validate);
82 83
83 void add(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*) override; 84 void add(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*) override;
84 void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtrWillBeRawPtr<SVGPropertyBase> from, PassRefPtrWillBeRawP tr<SVGPropertyBase> to, PassRefPtrWillBeRawPtr<SVGPropertyBase> toAtEndOfDuratio nValue, SVGElement* contextElement) override; 85 void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtrWillBeRawPtr<SVGPropertyBase> from, PassRefPtrWillBeRawP tr<SVGPropertyBase> to, PassRefPtrWillBeRawPtr<SVGPropertyBase> toAtEndOfDuratio nValue, SVGElement* contextElement) override;
85 float calculateDistance(PassRefPtrWillBeRawPtr<SVGPropertyBase> to, SVGEleme nt* contextElement) override; 86 float calculateDistance(PassRefPtrWillBeRawPtr<SVGPropertyBase> to, SVGEleme nt* contextElement) override;
86 87
87 static AnimatedPropertyType classType() { return AnimatedPreserveAspectRatio ; } 88 static AnimatedPropertyType classType() { return AnimatedPreserveAspectRatio ; }
88 89
89 private: 90 private:
90 SVGPreserveAspectRatio(); 91 SVGPreserveAspectRatio();
91 92
92 void setDefault(); 93 void setDefault();
93 template<typename CharType> 94 template<typename CharType>
94 bool parseInternal(const CharType*& ptr, const CharType* end, bool validate) ; 95 bool parseInternal(const CharType*& ptr, const CharType* end, bool validate) ;
95 96
96 SVGPreserveAspectRatioType m_align; 97 SVGPreserveAspectRatioType m_align;
97 SVGMeetOrSliceType m_meetOrSlice; 98 SVGMeetOrSliceType m_meetOrSlice;
98 }; 99 };
99 100
100 DEFINE_SVG_PROPERTY_TYPE_CASTS(SVGPreserveAspectRatio); 101 DEFINE_SVG_PROPERTY_TYPE_CASTS(SVGPreserveAspectRatio);
101 102
102 } // namespace blink 103 } // namespace blink
103 104
104 #endif // SVGPreserveAspectRatio_h 105 #endif // SVGPreserveAspectRatio_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698