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

Side by Side Diff: Source/core/svg/SVGForeignObjectElement.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) 2006 Apple Inc. All rights reserved. 2 * Copyright (C) 2006 Apple Inc. All rights reserved.
3 * 3 *
4 * This library is free software; you can redistribute it and/or 4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public 5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either 6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version. 7 * version 2 of the License, or (at your option) any later version.
8 * 8 *
9 * This library is distributed in the hope that it will be useful, 9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 29 matching lines...) Expand all
40 private: 40 private:
41 SVGForeignObjectElement(const QualifiedName&, Document*); 41 SVGForeignObjectElement(const QualifiedName&, Document*);
42 42
43 virtual bool isValid() const { return SVGTests::isValid(); } 43 virtual bool isValid() const { return SVGTests::isValid(); }
44 bool isSupportedAttribute(const QualifiedName&); 44 bool isSupportedAttribute(const QualifiedName&);
45 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR IDE; 45 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR IDE;
46 virtual void svgAttributeChanged(const QualifiedName&); 46 virtual void svgAttributeChanged(const QualifiedName&);
47 47
48 virtual bool rendererIsNeeded(const NodeRenderingContext&) OVERRIDE; 48 virtual bool rendererIsNeeded(const NodeRenderingContext&) OVERRIDE;
49 virtual bool childShouldCreateRenderer(const NodeRenderingContext&) const; 49 virtual bool childShouldCreateRenderer(const NodeRenderingContext&) const;
50 virtual RenderObject* createRenderer(RenderArena* arena, RenderStyle* style) ; 50 virtual RenderObject* createRenderer(RenderStyle*);
51 51
52 virtual bool selfHasRelativeLengths() const; 52 virtual bool selfHasRelativeLengths() const;
53 53
54 BEGIN_DECLARE_ANIMATED_PROPERTIES(SVGForeignObjectElement) 54 BEGIN_DECLARE_ANIMATED_PROPERTIES(SVGForeignObjectElement)
55 DECLARE_ANIMATED_LENGTH(X, x) 55 DECLARE_ANIMATED_LENGTH(X, x)
56 DECLARE_ANIMATED_LENGTH(Y, y) 56 DECLARE_ANIMATED_LENGTH(Y, y)
57 DECLARE_ANIMATED_LENGTH(Width, width) 57 DECLARE_ANIMATED_LENGTH(Width, width)
58 DECLARE_ANIMATED_LENGTH(Height, height) 58 DECLARE_ANIMATED_LENGTH(Height, height)
59 DECLARE_ANIMATED_STRING(Href, href) 59 DECLARE_ANIMATED_STRING(Href, href)
60 DECLARE_ANIMATED_BOOLEAN(ExternalResourcesRequired, externalResourcesReq uired) 60 DECLARE_ANIMATED_BOOLEAN(ExternalResourcesRequired, externalResourcesReq uired)
61 END_DECLARE_ANIMATED_PROPERTIES 61 END_DECLARE_ANIMATED_PROPERTIES
62 62
63 // SVGTests 63 // SVGTests
64 virtual void synchronizeRequiredFeatures() { SVGTests::synchronizeRequiredFe atures(this); } 64 virtual void synchronizeRequiredFeatures() { SVGTests::synchronizeRequiredFe atures(this); }
65 virtual void synchronizeRequiredExtensions() { SVGTests::synchronizeRequired Extensions(this); } 65 virtual void synchronizeRequiredExtensions() { SVGTests::synchronizeRequired Extensions(this); }
66 virtual void synchronizeSystemLanguage() { SVGTests::synchronizeSystemLangua ge(this); } 66 virtual void synchronizeSystemLanguage() { SVGTests::synchronizeSystemLangua ge(this); }
67 }; 67 };
68 68
69 } // namespace WebCore 69 } // namespace WebCore
70 70
71 #endif 71 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698