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

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

Issue 365673002: Pass a struct to ContainerNode::childrenChanged() instead of separate arguments (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove dead code Created 6 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) 2004, 2005, 2006, 2007 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 2006, 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 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> 4 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com>
5 * Copyright (C) Research In Motion Limited 2010. All rights reserved. 5 * Copyright (C) Research In Motion Limited 2010. All rights reserved.
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 SVGAnimatedInteger* filterResY() { return m_filterRes->secondInteger(); } 55 SVGAnimatedInteger* filterResY() { return m_filterRes->secondInteger(); }
56 56
57 private: 57 private:
58 explicit SVGFilterElement(Document&); 58 explicit SVGFilterElement(Document&);
59 59
60 virtual bool needsPendingResourceHandling() const OVERRIDE { return false; } 60 virtual bool needsPendingResourceHandling() const OVERRIDE { return false; }
61 61
62 bool isSupportedAttribute(const QualifiedName&); 62 bool isSupportedAttribute(const QualifiedName&);
63 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR IDE; 63 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR IDE;
64 virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE; 64 virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE;
65 virtual void childrenChanged(bool changedByParser = false, Node* beforeChang e = 0, Node* afterChange = 0, int childCountDelta = 0) OVERRIDE; 65 virtual void childrenChanged(const ChildrenChange&) OVERRIDE;
66 66
67 virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE; 67 virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE;
68 68
69 virtual bool selfHasRelativeLengths() const OVERRIDE; 69 virtual bool selfHasRelativeLengths() const OVERRIDE;
70 70
71 RefPtr<SVGAnimatedLength> m_x; 71 RefPtr<SVGAnimatedLength> m_x;
72 RefPtr<SVGAnimatedLength> m_y; 72 RefPtr<SVGAnimatedLength> m_y;
73 RefPtr<SVGAnimatedLength> m_width; 73 RefPtr<SVGAnimatedLength> m_width;
74 RefPtr<SVGAnimatedLength> m_height; 74 RefPtr<SVGAnimatedLength> m_height;
75 RefPtr<SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType> > m_filterUnits; 75 RefPtr<SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType> > m_filterUnits;
76 RefPtr<SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType> > m_primitiveUnits; 76 RefPtr<SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType> > m_primitiveUnits;
77 RefPtr<SVGAnimatedIntegerOptionalInteger> m_filterRes; 77 RefPtr<SVGAnimatedIntegerOptionalInteger> m_filterRes;
78 78
79 WillBeHeapHashSet<RefPtrWillBeMember<Node> > m_clientsToAdd; 79 WillBeHeapHashSet<RefPtrWillBeMember<Node> > m_clientsToAdd;
80 }; 80 };
81 81
82 } 82 }
83 83
84 #endif 84 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698