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

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

Issue 16896019: Replace RenderArena with PartitionAlloc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 6 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, 2008 Nikolas Zimmermann <zimmermann@kde .org> 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann <zimmermann@kde .org>
3 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005, 2006, 2007 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE; 62 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE;
63 virtual void removedFrom(ContainerNode*) OVERRIDE; 63 virtual void removedFrom(ContainerNode*) OVERRIDE;
64 virtual void buildPendingResource(); 64 virtual void buildPendingResource();
65 65
66 bool isSupportedAttribute(const QualifiedName&); 66 bool isSupportedAttribute(const QualifiedName&);
67 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR IDE; 67 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR IDE;
68 virtual void svgAttributeChanged(const QualifiedName&); 68 virtual void svgAttributeChanged(const QualifiedName&);
69 69
70 virtual void willRecalcStyle(StyleChange) OVERRIDE; 70 virtual void willRecalcStyle(StyleChange) OVERRIDE;
71 71
72 virtual RenderObject* createRenderer(RenderArena*, RenderStyle*); 72 virtual RenderObject* createRenderer(RenderStyle*);
73 virtual void toClipPath(Path&); 73 virtual void toClipPath(Path&);
74 74
75 void clearResourceReferences(); 75 void clearResourceReferences();
76 void buildShadowAndInstanceTree(SVGElement* target); 76 void buildShadowAndInstanceTree(SVGElement* target);
77 void detachInstance(); 77 void detachInstance();
78 78
79 virtual bool haveLoadedRequiredResources() { return SVGExternalResourcesRequ ired::haveLoadedRequiredResources(); } 79 virtual bool haveLoadedRequiredResources() { return SVGExternalResourcesRequ ired::haveLoadedRequiredResources(); }
80 80
81 virtual void finishParsingChildren(); 81 virtual void finishParsingChildren();
82 virtual bool selfHasRelativeLengths() const; 82 virtual bool selfHasRelativeLengths() const;
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 bool m_haveFiredLoadEvent; 129 bool m_haveFiredLoadEvent;
130 bool m_needsShadowTreeRecreation; 130 bool m_needsShadowTreeRecreation;
131 RefPtr<SVGElementInstance> m_targetElementInstance; 131 RefPtr<SVGElementInstance> m_targetElementInstance;
132 CachedResourceHandle<CachedDocument> m_cachedDocument; 132 CachedResourceHandle<CachedDocument> m_cachedDocument;
133 Timer<SVGElement> m_svgLoadEventTimer; 133 Timer<SVGElement> m_svgLoadEventTimer;
134 }; 134 };
135 135
136 } 136 }
137 137
138 #endif 138 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698