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

Side by Side Diff: third_party/WebKit/Source/core/svg/SVGFEDisplacementMapElement.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) 2006 Oliver Hunt <oliver@nerget.com> 2 * Copyright (C) 2006 Oliver Hunt <oliver@nerget.com>
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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 SVGAnimatedEnumeration<ChannelSelectorType>* xChannelSelector() { return m_x ChannelSelector.get(); } 43 SVGAnimatedEnumeration<ChannelSelectorType>* xChannelSelector() { return m_x ChannelSelector.get(); }
44 SVGAnimatedEnumeration<ChannelSelectorType>* yChannelSelector() { return m_y ChannelSelector.get(); } 44 SVGAnimatedEnumeration<ChannelSelectorType>* yChannelSelector() { return m_y ChannelSelector.get(); }
45 45
46 DECLARE_VIRTUAL_TRACE(); 46 DECLARE_VIRTUAL_TRACE();
47 47
48 private: 48 private:
49 explicit SVGFEDisplacementMapElement(Document&); 49 explicit SVGFEDisplacementMapElement(Document&);
50 50
51 bool setFilterEffectAttribute(FilterEffect*, const QualifiedName& attrName) override; 51 bool setFilterEffectAttribute(FilterEffect*, const QualifiedName& attrName) override;
52 void svgAttributeChanged(const QualifiedName&) override; 52 void svgAttributeChanged(const QualifiedName&) override;
53 PassRefPtrWillBeRawPtr<FilterEffect> build(SVGFilterBuilder*, Filter*) overr ide; 53 RawPtr<FilterEffect> build(SVGFilterBuilder*, Filter*) override;
54 54
55 RefPtrWillBeMember<SVGAnimatedNumber> m_scale; 55 Member<SVGAnimatedNumber> m_scale;
56 RefPtrWillBeMember<SVGAnimatedString> m_in1; 56 Member<SVGAnimatedString> m_in1;
57 RefPtrWillBeMember<SVGAnimatedString> m_in2; 57 Member<SVGAnimatedString> m_in2;
58 RefPtrWillBeMember<SVGAnimatedEnumeration<ChannelSelectorType>> m_xChannelSe lector; 58 Member<SVGAnimatedEnumeration<ChannelSelectorType>> m_xChannelSelector;
59 RefPtrWillBeMember<SVGAnimatedEnumeration<ChannelSelectorType>> m_yChannelSe lector; 59 Member<SVGAnimatedEnumeration<ChannelSelectorType>> m_yChannelSelector;
60 }; 60 };
61 61
62 } // namespace blink 62 } // namespace blink
63 63
64 #endif // SVGFEDisplacementMapElement_h 64 #endif // SVGFEDisplacementMapElement_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698