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

Unified Diff: Source/core/dom/Node.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/dom/Node.h ('k') | Source/core/dom/NodeFilter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/Node.cpp
diff --git a/Source/core/dom/Node.cpp b/Source/core/dom/Node.cpp
index 76b8755dcf48ee6e84debb81e4c9ac4f7022845b..751e021055e2a596c46506917f63b611c58cd357 100644
--- a/Source/core/dom/Node.cpp
+++ b/Source/core/dom/Node.cpp
@@ -23,70 +23,17 @@
*/
#include "config.h"
-#include "Node.h"
-
-#include "Attr.h"
-#include "Attribute.h"
-#include "BeforeLoadEvent.h"
-#include "ChildListMutationScope.h"
-#include "ChildNodeList.h"
-#include "ClassNodeList.h"
-#include "ContainerNodeAlgorithms.h"
-#include "DOMImplementation.h"
+#include "core/dom/Node.h"
+
#include "DOMSettableTokenList.h"
-#include "Document.h"
-#include "DocumentFragment.h"
-#include "DocumentType.h"
-#include "Element.h"
-#include "ElementRareData.h"
-#include "ElementShadow.h"
-#include "Event.h"
-#include "EventContext.h"
-#include "EventDispatchMediator.h"
-#include "EventDispatcher.h"
-#include "EventException.h"
-#include "EventListener.h"
-#include "EventNames.h"
-#include "ExceptionCode.h"
-#include "ExceptionCodePlaceholder.h"
-#include "FocusEvent.h"
-#include "GestureEvent.h"
#include "HTMLElement.h"
#include "HTMLFrameOwnerElement.h"
#include "HTMLNames.h"
#include "HTMLStyleElement.h"
#include "InsertionPoint.h"
#include "InspectorCounters.h"
-#include "KeyboardEvent.h"
#include "LabelsNodeList.h"
-#include "LiveNodeList.h"
-#include "MouseEvent.h"
-#include "MutationEvent.h"
-#include "NameNodeList.h"
-#include "NamedNodeMap.h"
-#include "NodeRareData.h"
-#include "NodeRenderingContext.h"
-#include "NodeTraversal.h"
-#include "ProcessingInstruction.h"
-#include "ProgressEvent.h"
#include "RadioNodeList.h"
-#include "RegisteredEventListener.h"
-#include "ScopedEventQueue.h"
-#include "SelectorQuery.h"
-#include "ShadowRoot.h"
-#include "StaticNodeList.h"
-#include "TagNodeList.h"
-#include "TemplateContentDocumentFragment.h"
-#include "Text.h"
-#include "TextEvent.h"
-#include "TouchEvent.h"
-#include "TreeScopeAdopter.h"
-#include "UIEvent.h"
-#include "UIEventWithKeyState.h"
-#include "UserActionElementSet.h"
-#include "WebCoreMemoryInstrumentation.h"
-#include "WheelEvent.h"
-#include "WindowEventContext.h"
#include "XMLNames.h"
#include "core/accessibility/AXObjectCache.h"
#include "core/css/CSSParser.h"
@@ -96,6 +43,59 @@
#include "core/css/CSSStyleRule.h"
#include "core/css/CSSStyleSheet.h"
#include "core/css/StyleResolver.h"
+#include "core/dom/Attr.h"
+#include "core/dom/Attribute.h"
+#include "core/dom/BeforeLoadEvent.h"
+#include "core/dom/ChildListMutationScope.h"
+#include "core/dom/ChildNodeList.h"
+#include "core/dom/ClassNodeList.h"
+#include "core/dom/ContainerNodeAlgorithms.h"
+#include "core/dom/DOMImplementation.h"
+#include "core/dom/Document.h"
+#include "core/dom/DocumentFragment.h"
+#include "core/dom/DocumentType.h"
+#include "core/dom/Element.h"
+#include "core/dom/ElementRareData.h"
+#include "core/dom/ElementShadow.h"
+#include "core/dom/Event.h"
+#include "core/dom/EventContext.h"
+#include "core/dom/EventDispatchMediator.h"
+#include "core/dom/EventDispatcher.h"
+#include "core/dom/EventException.h"
+#include "core/dom/EventListener.h"
+#include "core/dom/EventNames.h"
+#include "core/dom/ExceptionCode.h"
+#include "core/dom/ExceptionCodePlaceholder.h"
+#include "core/dom/FocusEvent.h"
+#include "core/dom/GestureEvent.h"
+#include "core/dom/KeyboardEvent.h"
+#include "core/dom/LiveNodeList.h"
+#include "core/dom/MouseEvent.h"
+#include "core/dom/MutationEvent.h"
+#include "core/dom/NameNodeList.h"
+#include "core/dom/NamedNodeMap.h"
+#include "core/dom/NodeRareData.h"
+#include "core/dom/NodeRenderingContext.h"
+#include "core/dom/NodeTraversal.h"
+#include "core/dom/ProcessingInstruction.h"
+#include "core/dom/ProgressEvent.h"
+#include "core/dom/RegisteredEventListener.h"
+#include "core/dom/ScopedEventQueue.h"
+#include "core/dom/SelectorQuery.h"
+#include "core/dom/ShadowRoot.h"
+#include "core/dom/StaticNodeList.h"
+#include "core/dom/TagNodeList.h"
+#include "core/dom/TemplateContentDocumentFragment.h"
+#include "core/dom/Text.h"
+#include "core/dom/TextEvent.h"
+#include "core/dom/TouchEvent.h"
+#include "core/dom/TreeScopeAdopter.h"
+#include "core/dom/UIEvent.h"
+#include "core/dom/UIEventWithKeyState.h"
+#include "core/dom/UserActionElementSet.h"
+#include "core/dom/WebCoreMemoryInstrumentation.h"
+#include "core/dom/WheelEvent.h"
+#include "core/dom/WindowEventContext.h"
#include "core/editing/htmlediting.h"
#include "core/page/Chrome.h"
#include "core/page/ChromeClient.h"
« no previous file with comments | « Source/core/dom/Node.h ('k') | Source/core/dom/NodeFilter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698