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

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

Issue 896773002: [svg2] Make 'x' and 'y' presentation attributes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 5 years, 10 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
« no previous file with comments | « Source/core/svg/SVGForeignObjectElement.cpp ('k') | Source/core/svg/SVGImageElement.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 2006, 2008 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 SVGAnimatedPreserveAspectRatio* preserveAspectRatio() { return m_preserveAsp ectRatio.get(); } 49 SVGAnimatedPreserveAspectRatio* preserveAspectRatio() { return m_preserveAsp ectRatio.get(); }
50 50
51 private: 51 private:
52 explicit SVGImageElement(Document&); 52 explicit SVGImageElement(Document&);
53 53
54 virtual bool isStructurallyExternal() const override { return !hrefString(). isNull(); } 54 virtual bool isStructurallyExternal() const override { return !hrefString(). isNull(); }
55 55
56 bool isSupportedAttribute(const QualifiedName&); 56 bool isSupportedAttribute(const QualifiedName&);
57 virtual void parseAttribute(const QualifiedName&, const AtomicString&) overr ide; 57 virtual void parseAttribute(const QualifiedName&, const AtomicString&) overr ide;
58 virtual bool isPresentationAttribute(const QualifiedName&) const override; 58 virtual bool isPresentationAttribute(const QualifiedName&) const override;
59 virtual bool isPresentationAttributeWithSVGDOM(const QualifiedName&) const o verride;
59 virtual void collectStyleForPresentationAttribute(const QualifiedName&, cons t AtomicString&, MutableStylePropertySet*) override; 60 virtual void collectStyleForPresentationAttribute(const QualifiedName&, cons t AtomicString&, MutableStylePropertySet*) override;
61
60 virtual void svgAttributeChanged(const QualifiedName&) override; 62 virtual void svgAttributeChanged(const QualifiedName&) override;
61 63
62 virtual void attach(const AttachContext& = AttachContext()) override; 64 virtual void attach(const AttachContext& = AttachContext()) override;
63 virtual InsertionNotificationRequest insertedInto(ContainerNode*) override; 65 virtual InsertionNotificationRequest insertedInto(ContainerNode*) override;
64 66
65 virtual LayoutObject* createRenderer(const LayoutStyle&) override; 67 virtual LayoutObject* createRenderer(const LayoutStyle&) override;
66 68
67 virtual const AtomicString imageSourceURL() const override; 69 virtual const AtomicString imageSourceURL() const override;
68 70
69 virtual bool haveLoadedRequiredResources() override; 71 virtual bool haveLoadedRequiredResources() override;
70 72
71 virtual bool selfHasRelativeLengths() const override; 73 virtual bool selfHasRelativeLengths() const override;
72 virtual void didMoveToNewDocument(Document& oldDocument) override; 74 virtual void didMoveToNewDocument(Document& oldDocument) override;
73 SVGImageLoader& imageLoader() { return *m_imageLoader; } 75 SVGImageLoader& imageLoader() { return *m_imageLoader; }
74 76
75 RefPtrWillBeMember<SVGAnimatedLength> m_x; 77 RefPtrWillBeMember<SVGAnimatedLength> m_x;
76 RefPtrWillBeMember<SVGAnimatedLength> m_y; 78 RefPtrWillBeMember<SVGAnimatedLength> m_y;
77 RefPtrWillBeMember<SVGAnimatedLength> m_width; 79 RefPtrWillBeMember<SVGAnimatedLength> m_width;
78 RefPtrWillBeMember<SVGAnimatedLength> m_height; 80 RefPtrWillBeMember<SVGAnimatedLength> m_height;
79 RefPtrWillBeMember<SVGAnimatedPreserveAspectRatio> m_preserveAspectRatio; 81 RefPtrWillBeMember<SVGAnimatedPreserveAspectRatio> m_preserveAspectRatio;
80 82
81 OwnPtrWillBeMember<SVGImageLoader> m_imageLoader; 83 OwnPtrWillBeMember<SVGImageLoader> m_imageLoader;
82 bool m_needsLoaderURIUpdate : 1; 84 bool m_needsLoaderURIUpdate : 1;
83 }; 85 };
84 86
85 } // namespace blink 87 } // namespace blink
86 88
87 #endif // SVGImageElement_h 89 #endif // SVGImageElement_h
OLDNEW
« no previous file with comments | « Source/core/svg/SVGForeignObjectElement.cpp ('k') | Source/core/svg/SVGImageElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698