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

Unified Diff: Source/core/svg/SVGElement.cpp

Issue 14519003: Absolutify paths to dom/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix testrunner Created 7 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/svg/SVGElement.h ('k') | Source/core/svg/SVGElementInstance.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
}
« no previous file with comments | « Source/core/svg/SVGElement.h ('k') | Source/core/svg/SVGElementInstance.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698