OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann | 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann |
3 * <zimmermann@kde.org> | 3 * <zimmermann@kde.org> |
4 * Copyright (C) 2004, 2005, 2006, 2008 Rob Buis <buis@kde.org> | 4 * Copyright (C) 2004, 2005, 2006, 2008 Rob Buis <buis@kde.org> |
5 * Copyright (C) 2008 Apple Inc. All rights reserved. | 5 * Copyright (C) 2008 Apple Inc. All rights reserved. |
6 * Copyright (C) 2008 Alp Toker <alp@atoker.com> | 6 * Copyright (C) 2008 Alp Toker <alp@atoker.com> |
7 * Copyright (C) 2009 Cameron McCormack <cam@mcc.id.au> | 7 * Copyright (C) 2009 Cameron McCormack <cam@mcc.id.au> |
8 * | 8 * |
9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
10 * modify it under the terms of the GNU Library General Public | 10 * modify it under the terms of the GNU Library General Public |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 #include "core/layout/LayoutObject.h" | 45 #include "core/layout/LayoutObject.h" |
46 #include "core/layout/svg/LayoutSVGResourceContainer.h" | 46 #include "core/layout/svg/LayoutSVGResourceContainer.h" |
47 #include "core/svg/SVGDocumentExtensions.h" | 47 #include "core/svg/SVGDocumentExtensions.h" |
48 #include "core/svg/SVGElementRareData.h" | 48 #include "core/svg/SVGElementRareData.h" |
49 #include "core/svg/SVGGraphicsElement.h" | 49 #include "core/svg/SVGGraphicsElement.h" |
50 #include "core/svg/SVGSVGElement.h" | 50 #include "core/svg/SVGSVGElement.h" |
51 #include "core/svg/SVGTitleElement.h" | 51 #include "core/svg/SVGTitleElement.h" |
52 #include "core/svg/SVGTreeScopeResources.h" | 52 #include "core/svg/SVGTreeScopeResources.h" |
53 #include "core/svg/SVGUseElement.h" | 53 #include "core/svg/SVGUseElement.h" |
54 #include "core/svg/properties/SVGProperty.h" | 54 #include "core/svg/properties/SVGProperty.h" |
55 #include "wtf/AutoReset.h" | 55 #include "platform/wtf/AutoReset.h" |
56 #include "wtf/Threading.h" | 56 #include "platform/wtf/Threading.h" |
57 | 57 |
58 namespace blink { | 58 namespace blink { |
59 | 59 |
60 using namespace HTMLNames; | 60 using namespace HTMLNames; |
61 using namespace SVGNames; | 61 using namespace SVGNames; |
62 | 62 |
63 SVGElement::SVGElement(const QualifiedName& tag_name, | 63 SVGElement::SVGElement(const QualifiedName& tag_name, |
64 Document& document, | 64 Document& document, |
65 ConstructionType construction_type) | 65 ConstructionType construction_type) |
66 : Element(tag_name, &document, construction_type), | 66 : Element(tag_name, &document, construction_type), |
(...skipping 1265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1332 visitor->Trace(class_name_); | 1332 visitor->Trace(class_name_); |
1333 Element::Trace(visitor); | 1333 Element::Trace(visitor); |
1334 } | 1334 } |
1335 | 1335 |
1336 const AtomicString& SVGElement::EventParameterName() { | 1336 const AtomicString& SVGElement::EventParameterName() { |
1337 DEFINE_STATIC_LOCAL(const AtomicString, evt_string, ("evt")); | 1337 DEFINE_STATIC_LOCAL(const AtomicString, evt_string, ("evt")); |
1338 return evt_string; | 1338 return evt_string; |
1339 } | 1339 } |
1340 | 1340 |
1341 } // namespace blink | 1341 } // namespace blink |
OLD | NEW |