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: third_party/WebKit/Source/core/svg/SVGFECompositeElement.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) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 2007 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 SVGAnimatedString* in2() { return m_in2.get(); } 44 SVGAnimatedString* in2() { return m_in2.get(); }
45 SVGAnimatedEnumeration<CompositeOperationType>* svgOperator() { return m_svg Operator.get(); } 45 SVGAnimatedEnumeration<CompositeOperationType>* svgOperator() { return m_svg Operator.get(); }
46 46
47 DECLARE_VIRTUAL_TRACE(); 47 DECLARE_VIRTUAL_TRACE();
48 48
49 private: 49 private:
50 explicit SVGFECompositeElement(Document&); 50 explicit SVGFECompositeElement(Document&);
51 51
52 bool setFilterEffectAttribute(FilterEffect*, const QualifiedName&) override; 52 bool setFilterEffectAttribute(FilterEffect*, const QualifiedName&) override;
53 void svgAttributeChanged(const QualifiedName&) override; 53 void svgAttributeChanged(const QualifiedName&) override;
54 PassRefPtrWillBeRawPtr<FilterEffect> build(SVGFilterBuilder*, Filter*) overr ide; 54 RawPtr<FilterEffect> build(SVGFilterBuilder*, Filter*) override;
55 55
56 RefPtrWillBeMember<SVGAnimatedNumber> m_k1; 56 Member<SVGAnimatedNumber> m_k1;
57 RefPtrWillBeMember<SVGAnimatedNumber> m_k2; 57 Member<SVGAnimatedNumber> m_k2;
58 RefPtrWillBeMember<SVGAnimatedNumber> m_k3; 58 Member<SVGAnimatedNumber> m_k3;
59 RefPtrWillBeMember<SVGAnimatedNumber> m_k4; 59 Member<SVGAnimatedNumber> m_k4;
60 RefPtrWillBeMember<SVGAnimatedString> m_in1; 60 Member<SVGAnimatedString> m_in1;
61 RefPtrWillBeMember<SVGAnimatedString> m_in2; 61 Member<SVGAnimatedString> m_in2;
62 RefPtrWillBeMember<SVGAnimatedEnumeration<CompositeOperationType>> m_svgOper ator; 62 Member<SVGAnimatedEnumeration<CompositeOperationType>> m_svgOperator;
63 }; 63 };
64 64
65 } // namespace blink 65 } // namespace blink
66 66
67 #endif // SVGFECompositeElement_h 67 #endif // SVGFECompositeElement_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698