OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> |
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2010 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2010 Rob Buis <buis@kde.org> |
4 * Copyright (C) 2007 Apple Inc. All rights reserved. | 4 * Copyright (C) 2007 Apple Inc. All rights reserved. |
5 * Copyright (C) 2014 Google, Inc. | 5 * Copyright (C) 2014 Google, Inc. |
6 * | 6 * |
7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
(...skipping 20 matching lines...) Expand all Loading... |
31 #include "core/dom/Document.h" | 31 #include "core/dom/Document.h" |
32 #include "core/dom/ElementTraversal.h" | 32 #include "core/dom/ElementTraversal.h" |
33 #include "core/dom/StaticNodeList.h" | 33 #include "core/dom/StaticNodeList.h" |
34 #include "core/editing/FrameSelection.h" | 34 #include "core/editing/FrameSelection.h" |
35 #include "core/events/EventListener.h" | 35 #include "core/events/EventListener.h" |
36 #include "core/frame/LocalFrame.h" | 36 #include "core/frame/LocalFrame.h" |
37 #include "core/page/FrameTree.h" | 37 #include "core/page/FrameTree.h" |
38 #include "core/frame/FrameView.h" | 38 #include "core/frame/FrameView.h" |
39 #include "core/frame/UseCounter.h" | 39 #include "core/frame/UseCounter.h" |
40 #include "core/rendering/RenderObject.h" | 40 #include "core/rendering/RenderObject.h" |
41 #include "core/rendering/RenderPart.h" | |
42 #include "core/rendering/svg/RenderSVGModelObject.h" | 41 #include "core/rendering/svg/RenderSVGModelObject.h" |
43 #include "core/rendering/svg/RenderSVGResource.h" | 42 #include "core/rendering/svg/RenderSVGResource.h" |
44 #include "core/rendering/svg/RenderSVGRoot.h" | 43 #include "core/rendering/svg/RenderSVGRoot.h" |
45 #include "core/rendering/svg/RenderSVGViewportContainer.h" | 44 #include "core/rendering/svg/RenderSVGViewportContainer.h" |
46 #include "core/svg/SVGAngleTearOff.h" | 45 #include "core/svg/SVGAngleTearOff.h" |
47 #include "core/svg/SVGNumberTearOff.h" | 46 #include "core/svg/SVGNumberTearOff.h" |
48 #include "core/svg/SVGPreserveAspectRatio.h" | 47 #include "core/svg/SVGPreserveAspectRatio.h" |
49 #include "core/svg/SVGRectTearOff.h" | 48 #include "core/svg/SVGRectTearOff.h" |
50 #include "core/svg/SVGTransform.h" | 49 #include "core/svg/SVGTransform.h" |
51 #include "core/svg/SVGTransformList.h" | 50 #include "core/svg/SVGTransformList.h" |
(...skipping 721 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
773 } | 772 } |
774 | 773 |
775 void SVGSVGElement::trace(Visitor* visitor) | 774 void SVGSVGElement::trace(Visitor* visitor) |
776 { | 775 { |
777 visitor->trace(m_timeContainer); | 776 visitor->trace(m_timeContainer); |
778 visitor->trace(m_viewSpec); | 777 visitor->trace(m_viewSpec); |
779 SVGGraphicsElement::trace(visitor); | 778 SVGGraphicsElement::trace(visitor); |
780 } | 779 } |
781 | 780 |
782 } // namespace blink | 781 } // namespace blink |
OLD | NEW |