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

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

Issue 2164493002: Renamed Node::attach to Node::attachLayoutTree. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 explicit SVGImageElement(Document&); 55 explicit SVGImageElement(Document&);
56 56
57 bool isStructurallyExternal() const override { return !hrefString().isNull() ; } 57 bool isStructurallyExternal() const override { return !hrefString().isNull() ; }
58 58
59 bool isPresentationAttribute(const QualifiedName&) const override; 59 bool isPresentationAttribute(const QualifiedName&) const override;
60 bool isPresentationAttributeWithSVGDOM(const QualifiedName&) const override; 60 bool isPresentationAttributeWithSVGDOM(const QualifiedName&) const override;
61 void collectStyleForPresentationAttribute(const QualifiedName&, const Atomic String&, MutableStylePropertySet*) override; 61 void collectStyleForPresentationAttribute(const QualifiedName&, const Atomic String&, MutableStylePropertySet*) override;
62 62
63 void svgAttributeChanged(const QualifiedName&) override; 63 void svgAttributeChanged(const QualifiedName&) override;
64 64
65 void attach(const AttachContext& = AttachContext()) override; 65 void attachLayoutTree(const AttachContext& = AttachContext()) override;
66 InsertionNotificationRequest insertedInto(ContainerNode*) override; 66 InsertionNotificationRequest insertedInto(ContainerNode*) override;
67 67
68 LayoutObject* createLayoutObject(const ComputedStyle&) override; 68 LayoutObject* createLayoutObject(const ComputedStyle&) override;
69 69
70 const AtomicString imageSourceURL() const override; 70 const AtomicString imageSourceURL() const override;
71 71
72 bool haveLoadedRequiredResources() override; 72 bool haveLoadedRequiredResources() override;
73 73
74 bool selfHasRelativeLengths() const override; 74 bool selfHasRelativeLengths() const override;
75 void didMoveToNewDocument(Document& oldDocument) override; 75 void didMoveToNewDocument(Document& oldDocument) override;
76 SVGImageLoader& imageLoader() const { return *m_imageLoader; } 76 SVGImageLoader& imageLoader() const { return *m_imageLoader; }
77 77
78 Member<SVGAnimatedLength> m_x; 78 Member<SVGAnimatedLength> m_x;
79 Member<SVGAnimatedLength> m_y; 79 Member<SVGAnimatedLength> m_y;
80 Member<SVGAnimatedLength> m_width; 80 Member<SVGAnimatedLength> m_width;
81 Member<SVGAnimatedLength> m_height; 81 Member<SVGAnimatedLength> m_height;
82 Member<SVGAnimatedPreserveAspectRatio> m_preserveAspectRatio; 82 Member<SVGAnimatedPreserveAspectRatio> m_preserveAspectRatio;
83 83
84 Member<SVGImageLoader> m_imageLoader; 84 Member<SVGImageLoader> m_imageLoader;
85 bool m_needsLoaderURIUpdate : 1; 85 bool m_needsLoaderURIUpdate : 1;
86 }; 86 };
87 87
88 } // namespace blink 88 } // namespace blink
89 89
90 #endif // SVGImageElement_h 90 #endif // SVGImageElement_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698