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

Side by Side Diff: Source/core/svg/SVGLength.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 | « Source/core/svg/SVGIntegerOptionalInteger.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,
(...skipping 22 matching lines...) Expand all
33 class ExceptionState; 33 class ExceptionState;
34 class QualifiedName; 34 class QualifiedName;
35 35
36 enum SVGLengthNegativeValuesMode { 36 enum SVGLengthNegativeValuesMode {
37 AllowNegativeLengths, 37 AllowNegativeLengths,
38 ForbidNegativeLengths 38 ForbidNegativeLengths
39 }; 39 };
40 40
41 class SVGLengthTearOff; 41 class SVGLengthTearOff;
42 42
43 class SVGLength final : public SVGPropertyBase { 43 class GC_PLUGIN_IGNORE("") SVGLength final : public SVGPropertyBase {
44 public: 44 public:
45 typedef SVGLengthTearOff TearOffType; 45 typedef SVGLengthTearOff TearOffType;
46 46
47 static PassRefPtrWillBeRawPtr<SVGLength> create(SVGLengthMode mode = LengthM odeOther) 47 static PassRefPtrWillBeRawPtr<SVGLength> create(SVGLengthMode mode = LengthM odeOther)
48 { 48 {
49 return adoptRefWillBeNoop(new SVGLength(mode)); 49 return adoptRefWillBeNoop(new SVGLength(mode));
50 } 50 }
51 51
52 PassRefPtrWillBeRawPtr<SVGLength> clone() const; 52 PassRefPtrWillBeRawPtr<SVGLength> clone() const;
53 virtual PassRefPtrWillBeRawPtr<SVGPropertyBase> cloneForAnimation(const Stri ng&) const override; 53 virtual PassRefPtrWillBeRawPtr<SVGPropertyBase> cloneForAnimation(const Stri ng&) const override;
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 static SVGLengthMode lengthModeForAnimatedLengthAttribute(const QualifiedNam e&); 95 static SVGLengthMode lengthModeForAnimatedLengthAttribute(const QualifiedNam e&);
96 96
97 PassRefPtrWillBeRawPtr<SVGLength> blend(PassRefPtrWillBeRawPtr<SVGLength> fr om, float progress) const; 97 PassRefPtrWillBeRawPtr<SVGLength> blend(PassRefPtrWillBeRawPtr<SVGLength> fr om, float progress) const;
98 98
99 virtual void add(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*) overr ide; 99 virtual void add(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*) overr ide;
100 virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtrWillBeRawPtr<SVGPropertyBase> from, PassRefPtrWi llBeRawPtr<SVGPropertyBase> to, PassRefPtrWillBeRawPtr<SVGPropertyBase> toAtEndO fDurationValue, SVGElement* contextElement) override; 100 virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtrWillBeRawPtr<SVGPropertyBase> from, PassRefPtrWi llBeRawPtr<SVGPropertyBase> to, PassRefPtrWillBeRawPtr<SVGPropertyBase> toAtEndO fDurationValue, SVGElement* contextElement) override;
101 virtual float calculateDistance(PassRefPtrWillBeRawPtr<SVGPropertyBase> to, SVGElement* contextElement) override; 101 virtual float calculateDistance(PassRefPtrWillBeRawPtr<SVGPropertyBase> to, SVGElement* contextElement) override;
102 102
103 static AnimatedPropertyType classType() { return AnimatedLength; } 103 static AnimatedPropertyType classType() { return AnimatedLength; }
104 104
105 // DECLARE_TRACE(virtual,override);
106
105 private: 107 private:
106 SVGLength(SVGLengthMode); 108 SVGLength(SVGLengthMode);
107 SVGLength(const SVGLength&); 109 SVGLength(const SVGLength&);
108 110
109 float m_valueInSpecifiedUnits; 111 float m_valueInSpecifiedUnits;
110 unsigned m_unitMode : 2; 112 unsigned m_unitMode : 2;
111 unsigned m_unitType : 4; 113 unsigned m_unitType : 4;
112 }; 114 };
113 115
114 inline PassRefPtrWillBeRawPtr<SVGLength> toSVGLength(PassRefPtrWillBeRawPtr<SVGP ropertyBase> passBase) 116 inline PassRefPtrWillBeRawPtr<SVGLength> toSVGLength(PassRefPtrWillBeRawPtr<SVGP ropertyBase> passBase)
115 { 117 {
116 RefPtrWillBeRawPtr<SVGPropertyBase> base = passBase; 118 RefPtrWillBeRawPtr<SVGPropertyBase> base = passBase;
117 ASSERT(base->type() == SVGLength::classType()); 119 ASSERT(base->type() == SVGLength::classType());
118 return static_pointer_cast<SVGLength>(base.release()); 120 return static_pointer_cast<SVGLength>(base.release());
119 } 121 }
120 122
121 } // namespace blink 123 } // namespace blink
122 124
123 #endif // SVGLength_h 125 #endif // SVGLength_h
OLDNEW
« no previous file with comments | « Source/core/svg/SVGIntegerOptionalInteger.cpp ('k') | Source/core/svg/SVGLength.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698