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

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

Issue 1220053003: Disentangle filter content recording state from FilterData (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Added test. Created 5 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
« no previous file with comments | « Source/core/paint/SVGPaintContext.cpp ('k') | Source/core/testing/Internals.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 30 matching lines...) Expand all
41 DECLARE_VIRTUAL_TRACE(); 41 DECLARE_VIRTUAL_TRACE();
42 42
43 bool currentFrameHasSingleSecurityOrigin() const; 43 bool currentFrameHasSingleSecurityOrigin() const;
44 44
45 SVGAnimatedLength* x() const { return m_x.get(); } 45 SVGAnimatedLength* x() const { return m_x.get(); }
46 SVGAnimatedLength* y() const { return m_y.get(); } 46 SVGAnimatedLength* y() const { return m_y.get(); }
47 SVGAnimatedLength* width() const { return m_width.get(); } 47 SVGAnimatedLength* width() const { return m_width.get(); }
48 SVGAnimatedLength* height() const { return m_height.get(); } 48 SVGAnimatedLength* height() const { return m_height.get(); }
49 SVGAnimatedPreserveAspectRatio* preserveAspectRatio() { return m_preserveAsp ectRatio.get(); } 49 SVGAnimatedPreserveAspectRatio* preserveAspectRatio() { return m_preserveAsp ectRatio.get(); }
50 50
51 // Exposed for testing.
52 ImageResource* cachedImage() const { return imageLoader().image(); }
53
51 private: 54 private:
52 explicit SVGImageElement(Document&); 55 explicit SVGImageElement(Document&);
53 56
54 virtual bool isStructurallyExternal() const override { return !hrefString(). isNull(); } 57 virtual bool isStructurallyExternal() const override { return !hrefString(). isNull(); }
55 58
56 virtual bool isPresentationAttribute(const QualifiedName&) const override; 59 virtual bool isPresentationAttribute(const QualifiedName&) const override;
57 virtual bool isPresentationAttributeWithSVGDOM(const QualifiedName&) const o verride; 60 virtual bool isPresentationAttributeWithSVGDOM(const QualifiedName&) const o verride;
58 virtual void collectStyleForPresentationAttribute(const QualifiedName&, cons t AtomicString&, MutableStylePropertySet*) override; 61 virtual void collectStyleForPresentationAttribute(const QualifiedName&, cons t AtomicString&, MutableStylePropertySet*) override;
59 62
60 virtual void svgAttributeChanged(const QualifiedName&) override; 63 virtual void svgAttributeChanged(const QualifiedName&) override;
61 64
62 virtual void attach(const AttachContext& = AttachContext()) override; 65 virtual void attach(const AttachContext& = AttachContext()) override;
63 virtual InsertionNotificationRequest insertedInto(ContainerNode*) override; 66 virtual InsertionNotificationRequest insertedInto(ContainerNode*) override;
64 67
65 virtual LayoutObject* createLayoutObject(const ComputedStyle&) override; 68 virtual LayoutObject* createLayoutObject(const ComputedStyle&) override;
66 69
67 virtual const AtomicString imageSourceURL() const override; 70 virtual const AtomicString imageSourceURL() const override;
68 71
69 virtual bool haveLoadedRequiredResources() override; 72 virtual bool haveLoadedRequiredResources() override;
70 73
71 virtual bool selfHasRelativeLengths() const override; 74 virtual bool selfHasRelativeLengths() const override;
72 virtual void didMoveToNewDocument(Document& oldDocument) override; 75 virtual void didMoveToNewDocument(Document& oldDocument) override;
73 SVGImageLoader& imageLoader() { return *m_imageLoader; } 76 SVGImageLoader& imageLoader() const { return *m_imageLoader; }
74 77
75 RefPtrWillBeMember<SVGAnimatedLength> m_x; 78 RefPtrWillBeMember<SVGAnimatedLength> m_x;
76 RefPtrWillBeMember<SVGAnimatedLength> m_y; 79 RefPtrWillBeMember<SVGAnimatedLength> m_y;
77 RefPtrWillBeMember<SVGAnimatedLength> m_width; 80 RefPtrWillBeMember<SVGAnimatedLength> m_width;
78 RefPtrWillBeMember<SVGAnimatedLength> m_height; 81 RefPtrWillBeMember<SVGAnimatedLength> m_height;
79 RefPtrWillBeMember<SVGAnimatedPreserveAspectRatio> m_preserveAspectRatio; 82 RefPtrWillBeMember<SVGAnimatedPreserveAspectRatio> m_preserveAspectRatio;
80 83
81 OwnPtrWillBeMember<SVGImageLoader> m_imageLoader; 84 OwnPtrWillBeMember<SVGImageLoader> m_imageLoader;
82 bool m_needsLoaderURIUpdate : 1; 85 bool m_needsLoaderURIUpdate : 1;
83 }; 86 };
84 87
85 } // namespace blink 88 } // namespace blink
86 89
87 #endif // SVGImageElement_h 90 #endif // SVGImageElement_h
OLDNEW
« no previous file with comments | « Source/core/paint/SVGPaintContext.cpp ('k') | Source/core/testing/Internals.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698