| Index: Source/core/dom/Node.cpp
|
| diff --git a/Source/core/dom/Node.cpp b/Source/core/dom/Node.cpp
|
| index 1945ff6869b8947f49c4e5f4aa783f8165ec5461..09ae9a8eec08651219dcfb534047b2864b494f15 100644
|
| --- a/Source/core/dom/Node.cpp
|
| +++ b/Source/core/dom/Node.cpp
|
| @@ -28,19 +28,12 @@
|
| #include "HTMLNames.h"
|
| #include "XMLNames.h"
|
| #include "core/accessibility/AXObjectCache.h"
|
| -#include "core/css/CSSParser.h"
|
| -#include "core/css/CSSRule.h"
|
| -#include "core/css/CSSSelector.h"
|
| -#include "core/css/CSSSelectorList.h"
|
| -#include "core/css/CSSStyleRule.h"
|
| -#include "core/css/CSSStyleSheet.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"
|
| @@ -48,7 +41,6 @@
|
| #include "core/dom/Element.h"
|
| #include "core/dom/ElementRareData.h"
|
| #include "core/dom/Event.h"
|
| -#include "core/dom/EventContext.h"
|
| #include "core/dom/EventDispatchMediator.h"
|
| #include "core/dom/EventDispatcher.h"
|
| #include "core/dom/EventListener.h"
|
| @@ -62,16 +54,11 @@
|
| #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/StaticNodeList.h"
|
| #include "core/dom/TagNodeList.h"
|
| #include "core/dom/TemplateContentDocumentFragment.h"
|
| #include "core/dom/Text.h"
|
| @@ -79,38 +66,22 @@
|
| #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/dom/shadow/ElementShadow.h"
|
| -#include "core/dom/shadow/InsertionPoint.h"
|
| #include "core/dom/shadow/ShadowRoot.h"
|
| #include "core/editing/htmlediting.h"
|
| -#include "core/html/DOMSettableTokenList.h"
|
| -#include "core/html/HTMLElement.h"
|
| #include "core/html/HTMLFrameOwnerElement.h"
|
| #include "core/html/HTMLStyleElement.h"
|
| -#include "core/html/LabelsNodeList.h"
|
| #include "core/html/RadioNodeList.h"
|
| #include "core/inspector/InspectorCounters.h"
|
| -#include "core/page/Chrome.h"
|
| -#include "core/page/ChromeClient.h"
|
| #include "core/page/ContextMenuController.h"
|
| #include "core/page/EventHandler.h"
|
| #include "core/page/Frame.h"
|
| -#include "core/page/FrameView.h"
|
| #include "core/page/Page.h"
|
| #include "core/page/Settings.h"
|
| -#include "core/platform/Logging.h"
|
| -#include "core/platform/PlatformMouseEvent.h"
|
| -#include "core/platform/PlatformWheelEvent.h"
|
| -#include "core/rendering/RenderBlock.h"
|
| #include "core/rendering/RenderBox.h"
|
| -#include "core/rendering/RenderTextControl.h"
|
| -#include "core/rendering/RenderView.h"
|
| -#include "core/storage/StorageEvent.h"
|
| #include "wtf/HashSet.h"
|
| #include "wtf/PartitionAlloc.h"
|
| #include "wtf/PassOwnPtr.h"
|
| @@ -120,10 +91,6 @@
|
| #include "wtf/text/CString.h"
|
| #include "wtf/text/StringBuilder.h"
|
|
|
| -#ifndef NDEBUG
|
| -#include "core/rendering/RenderLayer.h"
|
| -#endif
|
| -
|
| using namespace std;
|
|
|
| namespace WebCore {
|
|
|