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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 #include "core/svg/SVGRectTearOff.h" | 49 #include "core/svg/SVGRectTearOff.h" |
50 #include "core/svg/SVGTransform.h" | 50 #include "core/svg/SVGTransform.h" |
51 #include "core/svg/SVGTransformList.h" | 51 #include "core/svg/SVGTransformList.h" |
52 #include "core/svg/SVGTransformTearOff.h" | 52 #include "core/svg/SVGTransformTearOff.h" |
53 #include "core/svg/SVGViewElement.h" | 53 #include "core/svg/SVGViewElement.h" |
54 #include "core/svg/SVGViewSpec.h" | 54 #include "core/svg/SVGViewSpec.h" |
55 #include "core/svg/animation/SMILTimeContainer.h" | 55 #include "core/svg/animation/SMILTimeContainer.h" |
56 #include "platform/LengthFunctions.h" | 56 #include "platform/LengthFunctions.h" |
57 #include "platform/geometry/FloatRect.h" | 57 #include "platform/geometry/FloatRect.h" |
58 #include "platform/transforms/AffineTransform.h" | 58 #include "platform/transforms/AffineTransform.h" |
59 #include "wtf/MathExtras.h" | 59 #include "platform/wtf/MathExtras.h" |
60 #include "wtf/StdLibExtras.h" | 60 #include "platform/wtf/StdLibExtras.h" |
61 | 61 |
62 namespace blink { | 62 namespace blink { |
63 | 63 |
64 inline SVGSVGElement::SVGSVGElement(Document& doc) | 64 inline SVGSVGElement::SVGSVGElement(Document& doc) |
65 : SVGGraphicsElement(SVGNames::svgTag, doc), | 65 : SVGGraphicsElement(SVGNames::svgTag, doc), |
66 SVGFitToViewBox(this), | 66 SVGFitToViewBox(this), |
67 x_(SVGAnimatedLength::Create(this, | 67 x_(SVGAnimatedLength::Create(this, |
68 SVGNames::xAttr, | 68 SVGNames::xAttr, |
69 SVGLength::Create(SVGLengthMode::kWidth), | 69 SVGLength::Create(SVGLengthMode::kWidth), |
70 CSSPropertyX)), | 70 CSSPropertyX)), |
(...skipping 661 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
732 visitor->Trace(width_); | 732 visitor->Trace(width_); |
733 visitor->Trace(height_); | 733 visitor->Trace(height_); |
734 visitor->Trace(translation_); | 734 visitor->Trace(translation_); |
735 visitor->Trace(time_container_); | 735 visitor->Trace(time_container_); |
736 visitor->Trace(view_spec_); | 736 visitor->Trace(view_spec_); |
737 SVGGraphicsElement::Trace(visitor); | 737 SVGGraphicsElement::Trace(visitor); |
738 SVGFitToViewBox::Trace(visitor); | 738 SVGFitToViewBox::Trace(visitor); |
739 } | 739 } |
740 | 740 |
741 } // namespace blink | 741 } // namespace blink |
OLD | NEW |