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

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

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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) 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 bool setFilterEffectAttribute(FilterEffect*, const QualifiedName&) override; 61 bool setFilterEffectAttribute(FilterEffect*, const QualifiedName&) override;
62 void svgAttributeChanged(const QualifiedName&) override; 62 void svgAttributeChanged(const QualifiedName&) override;
63 PassRefPtrWillBeRawPtr<FilterEffect> build(SVGFilterBuilder*, Filter*) overr ide; 63 RawPtr<FilterEffect> build(SVGFilterBuilder*, Filter*) override;
64 64
65 RefPtrWillBeMember<SVGAnimatedNumber> m_bias; 65 Member<SVGAnimatedNumber> m_bias;
66 RefPtrWillBeMember<SVGAnimatedNumber> m_divisor; 66 Member<SVGAnimatedNumber> m_divisor;
67 RefPtrWillBeMember<SVGAnimatedString> m_in1; 67 Member<SVGAnimatedString> m_in1;
68 RefPtrWillBeMember<SVGAnimatedEnumeration<EdgeModeType>> m_edgeMode; 68 Member<SVGAnimatedEnumeration<EdgeModeType>> m_edgeMode;
69 RefPtrWillBeMember<SVGAnimatedNumberList> m_kernelMatrix; 69 Member<SVGAnimatedNumberList> m_kernelMatrix;
70 RefPtrWillBeMember<SVGAnimatedNumberOptionalNumber> m_kernelUnitLength; 70 Member<SVGAnimatedNumberOptionalNumber> m_kernelUnitLength;
71 RefPtrWillBeMember<SVGAnimatedIntegerOptionalInteger> m_order; 71 Member<SVGAnimatedIntegerOptionalInteger> m_order;
72 RefPtrWillBeMember<SVGAnimatedBoolean> m_preserveAlpha; 72 Member<SVGAnimatedBoolean> m_preserveAlpha;
73 RefPtrWillBeMember<SVGAnimatedInteger> m_targetX; 73 Member<SVGAnimatedInteger> m_targetX;
74 RefPtrWillBeMember<SVGAnimatedInteger> m_targetY; 74 Member<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