Title: [151320] trunk/Source/WebCore
Revision
151320
Author
[email protected]
Date
2013-06-07 08:19:01 -0700 (Fri, 07 Jun 2013)

Log Message

Remove unused header includes in Document
https://bugs.webkit.org/show_bug.cgi?id=117339

Reviewed by Andreas Kling.

Minor code cleanup.

* dom/Document.cpp:
* dom/Document.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (151319 => 151320)


--- trunk/Source/WebCore/ChangeLog	2013-06-07 15:12:03 UTC (rev 151319)
+++ trunk/Source/WebCore/ChangeLog	2013-06-07 15:19:01 UTC (rev 151320)
@@ -1,3 +1,15 @@
+2013-06-07  Kangil Han  <[email protected]>
+
+        Remove unused header includes in Document
+        https://bugs.webkit.org/show_bug.cgi?id=117339
+
+        Reviewed by Andreas Kling.
+
+        Minor code cleanup.
+
+        * dom/Document.cpp:
+        * dom/Document.h:
+
 2013-06-07  Allan Sandfeld Jensen  <[email protected]>
 
         Unnecessary use of Layout types in GraphicsLayer::paintGraphicsLayerContents

Modified: trunk/Source/WebCore/dom/Document.cpp (151319 => 151320)


--- trunk/Source/WebCore/dom/Document.cpp	2013-06-07 15:12:03 UTC (rev 151319)
+++ trunk/Source/WebCore/dom/Document.cpp	2013-06-07 15:19:01 UTC (rev 151320)
@@ -33,10 +33,8 @@
 #include "Attr.h"
 #include "Attribute.h"
 #include "CDATASection.h"
-#include "CSSParser.h"
 #include "CSSStyleDeclaration.h"
 #include "CSSStyleSheet.h"
-#include "CSSValueKeywords.h"
 #include "CachedCSSStyleSheet.h"
 #include "CachedResourceLoader.h"
 #include "Chrome.h"
@@ -49,7 +47,6 @@
 #include "CustomElementRegistry.h"
 #include "DOMImplementation.h"
 #include "DOMNamedFlowCollection.h"
-#include "DOMSelection.h"
 #include "DOMWindow.h"
 #include "DateComponents.h"
 #include "Dictionary.h"
@@ -70,24 +67,17 @@
 #include "EventListener.h"
 #include "EventNames.h"
 #include "ExceptionCode.h"
-#include "ExceptionCodePlaceholder.h"
-#include "FlowThreadController.h"
-#include "FocusController.h"
 #include "FontLoader.h"
 #include "FormController.h"
 #include "Frame.h"
 #include "FrameLoader.h"
 #include "FrameLoaderClient.h"
-#include "FrameSelection.h"
-#include "FrameTree.h"
 #include "FrameView.h"
-#include "GeolocationController.h"
 #include "HashChangeEvent.h"
 #include "HistogramSupport.h"
 #include "History.h"
 #include "HTMLAllCollection.h"
 #include "HTMLAnchorElement.h"
-#include "HTMLBodyElement.h"
 #include "HTMLCanvasElement.h"
 #include "HTMLCollection.h"
 #include "HTMLDocument.h"
@@ -97,7 +87,6 @@
 #include "HTMLHeadElement.h"
 #include "HTMLIFrameElement.h"
 #include "HTMLLinkElement.h"
-#include "HTMLMapElement.h"
 #include "HTMLNameCollection.h"
 #include "HTMLNames.h"
 #include "HTMLParserIdioms.h"
@@ -129,7 +118,6 @@
 #include "PageConsole.h"
 #include "PageGroup.h"
 #include "PageTransitionEvent.h"
-#include "PlatformKeyboardEvent.h"
 #include "PlatformLocale.h"
 #include "PlugInsResources.h"
 #include "PluginDocument.h"
@@ -137,10 +125,7 @@
 #include "PopStateEvent.h"
 #include "ProcessingInstruction.h"
 #include "QualifiedName.h"
-#include "RegisteredEventListener.h"
 #include "RenderArena.h"
-#include "RenderNamedFlowThread.h"
-#include "RenderTextControl.h"
 #include "RenderView.h"
 #include "RenderWidget.h"
 #include "ResourceLoader.h"
@@ -149,8 +134,6 @@
 #include "ScopedEventQueue.h"
 #include "ScriptCallStack.h"
 #include "ScriptController.h"
-#include "ScriptElement.h"
-#include "ScriptEventListener.h"
 #include "ScriptRunner.h"
 #include "ScriptSourceCode.h"
 #include "ScriptValue.h"
@@ -169,12 +152,8 @@
 #include "Timer.h"
 #include "TransformSource.h"
 #include "TreeWalker.h"
-#include "UserActionElementSet.h"
-#include "UserContentURLPattern.h"
 #include "VisitedLinkState.h"
-#include "WebKitNamedFlow.h"
 #include "XMLDocumentParser.h"
-#include "XMLHttpRequest.h"
 #include "XMLNSNames.h"
 #include "XMLNames.h"
 #include "XPathEvaluator.h"
@@ -183,10 +162,8 @@
 #include "XPathResult.h"
 #include "htmlediting.h"
 #include <wtf/CurrentTime.h>
-#include <wtf/HashFunctions.h>
 #include <wtf/MainThread.h>
 #include <wtf/PassRefPtr.h>
-#include <wtf/StdLibExtras.h>
 #include <wtf/text/StringBuffer.h>
 
 #if USE(ACCELERATED_COMPOSITING)
@@ -206,7 +183,6 @@
 #include "SVGElementFactory.h"
 #include "SVGNames.h"
 #include "SVGSVGElement.h"
-#include "SVGStyleElement.h"
 #endif
 
 #if ENABLE(TOUCH_EVENTS)

Modified: trunk/Source/WebCore/dom/Document.h (151319 => 151320)


--- trunk/Source/WebCore/dom/Document.h	2013-06-07 15:12:03 UTC (rev 151319)
+++ trunk/Source/WebCore/dom/Document.h	2013-06-07 15:19:01 UTC (rev 151320)
@@ -31,14 +31,12 @@
 #include "CollectionType.h"
 #include "Color.h"
 #include "ContainerNode.h"
-#include "DOMTimeStamp.h"
 #include "DocumentEventQueue.h"
 #include "DocumentTiming.h"
 #include "FocusDirection.h"
 #include "HitTestRequest.h"
 #include "IconURL.h"
 #include "InspectorCounters.h"
-#include "IntRect.h"
 #include "MutationObserver.h"
 #include "PageVisibilityState.h"
 #include "PlatformScreen.h"
@@ -51,7 +49,6 @@
 #include "UserActionElementSet.h"
 #include "ViewportArguments.h"
 #include <wtf/Deque.h>
-#include <wtf/FixedArray.h>
 #include <wtf/HashSet.h>
 #include <wtf/OwnPtr.h>
 #include <wtf/PassOwnPtr.h>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to