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

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

Issue 1212253012: Fix virtual/override/final usage in Source/core/svg/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> 2 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org>
3 * 3 *
4 * This library is free software; you can redistribute it and/or 4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public 5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either 6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version. 7 * version 2 of the License, or (at your option) any later version.
8 * 8 *
9 * This library is distributed in the hope that it will be useful, 9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 SVGAnimatedInteger* orderX() { return m_order->firstInteger(); } 51 SVGAnimatedInteger* orderX() { return m_order->firstInteger(); }
52 SVGAnimatedInteger* orderY() { return m_order->secondInteger(); } 52 SVGAnimatedInteger* orderY() { return m_order->secondInteger(); }
53 SVGAnimatedInteger* targetX() { return m_targetX.get(); } 53 SVGAnimatedInteger* targetX() { return m_targetX.get(); }
54 SVGAnimatedInteger* targetY() { return m_targetY.get(); } 54 SVGAnimatedInteger* targetY() { return m_targetY.get(); }
55 55
56 DECLARE_VIRTUAL_TRACE(); 56 DECLARE_VIRTUAL_TRACE();
57 57
58 private: 58 private:
59 explicit SVGFEConvolveMatrixElement(Document&); 59 explicit SVGFEConvolveMatrixElement(Document&);
60 60
61 virtual bool setFilterEffectAttribute(FilterEffect*, const QualifiedName&) o verride; 61 bool setFilterEffectAttribute(FilterEffect*, const QualifiedName&) override;
62 virtual void svgAttributeChanged(const QualifiedName&) override; 62 void svgAttributeChanged(const QualifiedName&) override;
63 virtual PassRefPtrWillBeRawPtr<FilterEffect> build(SVGFilterBuilder*, Filter *) override; 63 PassRefPtrWillBeRawPtr<FilterEffect> build(SVGFilterBuilder*, Filter*) overr ide;
64 64
65 RefPtrWillBeMember<SVGAnimatedNumber> m_bias; 65 RefPtrWillBeMember<SVGAnimatedNumber> m_bias;
66 RefPtrWillBeMember<SVGAnimatedNumber> m_divisor; 66 RefPtrWillBeMember<SVGAnimatedNumber> m_divisor;
67 RefPtrWillBeMember<SVGAnimatedString> m_in1; 67 RefPtrWillBeMember<SVGAnimatedString> m_in1;
68 RefPtrWillBeMember<SVGAnimatedEnumeration<EdgeModeType>> m_edgeMode; 68 RefPtrWillBeMember<SVGAnimatedEnumeration<EdgeModeType>> m_edgeMode;
69 RefPtrWillBeMember<SVGAnimatedNumberList> m_kernelMatrix; 69 RefPtrWillBeMember<SVGAnimatedNumberList> m_kernelMatrix;
70 RefPtrWillBeMember<SVGAnimatedNumberOptionalNumber> m_kernelUnitLength; 70 RefPtrWillBeMember<SVGAnimatedNumberOptionalNumber> m_kernelUnitLength;
71 RefPtrWillBeMember<SVGAnimatedIntegerOptionalInteger> m_order; 71 RefPtrWillBeMember<SVGAnimatedIntegerOptionalInteger> m_order;
72 RefPtrWillBeMember<SVGAnimatedBoolean> m_preserveAlpha; 72 RefPtrWillBeMember<SVGAnimatedBoolean> m_preserveAlpha;
73 RefPtrWillBeMember<SVGAnimatedInteger> m_targetX; 73 RefPtrWillBeMember<SVGAnimatedInteger> m_targetX;
74 RefPtrWillBeMember<SVGAnimatedInteger> m_targetY; 74 RefPtrWillBeMember<SVGAnimatedInteger> m_targetY;
75 }; 75 };
76 76
77 } // namespace blink 77 } // namespace blink
78 78
79 #endif // SVGFEConvolveMatrixElement_h 79 #endif // SVGFEConvolveMatrixElement_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698