| Index: Source/core/svg/SVGElement.cpp
|
| diff --git a/Source/core/svg/SVGElement.cpp b/Source/core/svg/SVGElement.cpp
|
| index 5b21baba5df890835ac453f4d88ddafd9e8eacfe..a3ff382bdde52a639c7d63d9b6164ca1c003f036 100644
|
| --- a/Source/core/svg/SVGElement.cpp
|
| +++ b/Source/core/svg/SVGElement.cpp
|
| @@ -26,11 +26,7 @@
|
| #if ENABLE(SVG)
|
| #include "SVGElement.h"
|
|
|
| -#include "DOMImplementation.h"
|
| -#include "Document.h"
|
| -#include "Event.h"
|
| #include "HTMLNames.h"
|
| -#include "NodeRenderingContext.h"
|
| #include "SVGCursorElement.h"
|
| #include "SVGDocumentExtensions.h"
|
| #include "SVGElementInstance.h"
|
| @@ -42,6 +38,10 @@
|
| #include "ScriptEventListener.h"
|
| #include "XMLNames.h"
|
| #include "core/css/CSSCursorImageValue.h"
|
| +#include "core/dom/DOMImplementation.h"
|
| +#include "core/dom/Document.h"
|
| +#include "core/dom/Event.h"
|
| +#include "core/dom/NodeRenderingContext.h"
|
| #include "core/rendering/RenderObject.h"
|
|
|
| namespace WebCore {
|
| @@ -217,7 +217,7 @@ SVGElement* SVGElement::viewportElement() const
|
| SVGDocumentExtensions* SVGElement::accessDocumentSVGExtensions()
|
| {
|
| // This function is provided for use by SVGAnimatedProperty to avoid
|
| - // global inclusion of Document.h in SVG code.
|
| + // global inclusion of core/dom/Document.h in SVG code.
|
| return document() ? document()->accessSVGExtensions() : 0;
|
| }
|
|
|
|
|