Changeset 74969 in webkit


Ignore:
Timestamp:
Jan 4, 2011 8:56:17 AM (13 years ago)
Author:
tonyg@chromium.org
Message:

2010-12-29 Tony Gentilcore <tonyg@chromium.org>

Reviewed by Darin Adler.

Remove 2 unnecessary includes from Document.h
https://bugs.webkit.org/show_bug.cgi?id=51727

No new tests because no changed functionality.

  • dom/Document.cpp:
  • dom/Document.h:
  • editing/Editor.cpp:
  • editing/SpellChecker.h:
  • editing/SplitTextNodeCommand.cpp:
  • editing/TextCheckingHelper.cpp:
  • page/FrameView.cpp:
  • page/Page.cpp:
  • rendering/HitTestResult.cpp:
  • rendering/InlineTextBox.cpp:
  • rendering/InlineTextBox.h:
  • rendering/svg/SVGInlineFlowBox.cpp:
Location:
trunk
Files:
22 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r74968 r74969  
     12010-12-29  Tony Gentilcore  <tonyg@chromium.org>
     2
     3        Reviewed by Darin Adler.
     4
     5        Remove 2 unnecessary includes from Document.h
     6        https://bugs.webkit.org/show_bug.cgi?id=51727
     7
     8        No new tests because no changed functionality.
     9
     10        * dom/Document.cpp:
     11        * dom/Document.h:
     12        * editing/Editor.cpp:
     13        * editing/SpellChecker.h:
     14        * editing/SplitTextNodeCommand.cpp:
     15        * editing/TextCheckingHelper.cpp:
     16        * page/FrameView.cpp:
     17        * page/Page.cpp:
     18        * rendering/HitTestResult.cpp:
     19        * rendering/InlineTextBox.cpp:
     20        * rendering/InlineTextBox.h:
     21        * rendering/svg/SVGInlineFlowBox.cpp:
     22
    1232011-01-04  Patrick Gansterer  <paroga@webkit.org>
    224
  • trunk/WebCore/dom/Document.cpp

    r74877 r74969  
    3838#include "CSSValueKeywords.h"
    3939#include "CachedCSSStyleSheet.h"
     40#include "CachedResourceLoader.h"
    4041#include "Chrome.h"
    4142#include "ChromeClient.h"
     
    4950#include "DeviceMotionEvent.h"
    5051#include "DeviceOrientationEvent.h"
    51 #include "CachedResourceLoader.h"
    5252#include "DocumentFragment.h"
    5353#include "DocumentLoader.h"
     54#include "DocumentMarkerController.h"
    5455#include "DocumentType.h"
    5556#include "EditingText.h"
  • trunk/WebCore/dom/Document.h

    r74476 r74969  
    2828#define Document_h
    2929
    30 #include "CachedResourceHandle.h"
    3130#include "CheckedRadioButtons.h"
    3231#include "CollectionCache.h"
     
    3433#include "Color.h"
    3534#include "ContainerNode.h"
    36 #include "DocumentMarkerController.h"
    3735#include "DocumentTiming.h"
    3836#include "QualifiedName.h"
     
    5654class CDATASection;
    5755class CachedCSSStyleSheet;
     56class CachedResourceLoader;
    5857class CachedScript;
    5958class CanvasRenderingContext;
     
    6362class CSSStyleSheet;
    6463class Comment;
    65 class Database;
    6664class DOMImplementation;
    6765class DOMSelection;
    6866class DOMWindow;
     67class Database;
    6968class DatabaseThread;
    70 class CachedResourceLoader;
    7169class DocumentFragment;
     70class DocumentMarkerController;
    7271class DocumentType;
    7372class DocumentWeakReference;
  • trunk/WebCore/editing/Editor.cpp

    r74886 r74969  
    3636#include "CSSStyleSelector.h"
    3737#include "CSSValueKeywords.h"
     38#include "CachedResourceLoader.h"
    3839#include "CharacterNames.h"
    3940#include "ClipboardEvent.h"
     
    4243#include "DeleteButtonController.h"
    4344#include "DeleteSelectionCommand.h"
    44 #include "CachedResourceLoader.h"
    4545#include "DocumentFragment.h"
     46#include "DocumentMarkerController.h"
    4647#include "EditingText.h"
    4748#include "EditorClient.h"
  • trunk/WebCore/editing/SpellChecker.h

    r73886 r74969  
    2727#define SpellChecker_h
    2828
    29 #include "Document.h"
     29#include "DocumentMarker.h"
    3030#include <wtf/Noncopyable.h>
    3131
     
    3434class EditorClient;
    3535class Frame;
     36class Node;
    3637
    3738class SpellCheckingResult {
  • trunk/WebCore/editing/SplitTextNodeCommand.cpp

    r69868 r74969  
    2828
    2929#include "Document.h"
     30#include "DocumentMarkerController.h"
    3031#include "Text.h"
    3132#include <wtf/Assertions.h>
  • trunk/WebCore/editing/TextCheckingHelper.cpp

    r73088 r74969  
    2828#include "TextCheckingHelper.h"
    2929
     30#include "DocumentMarkerController.h"
    3031#include "Range.h"
    3132#include "TextIterator.h"
  • trunk/WebCore/page/FrameView.cpp

    r74779 r74969  
    3333#include "Chrome.h"
    3434#include "ChromeClient.h"
     35#include "DocumentMarkerController.h"
    3536#include "EventHandler.h"
    3637#include "FloatRect.h"
  • trunk/WebCore/page/Page.cpp

    r74877 r74969  
    3232#include "DeviceMotionController.h"
    3333#include "DeviceOrientationController.h"
     34#include "DocumentMarkerController.h"
    3435#include "DragController.h"
    3536#include "EditorClient.h"
  • trunk/WebCore/platform/graphics/chromium/VideoLayerChromium.cpp

    r74440 r74969  
    3737#include "GraphicsContext3D.h"
    3838#include "LayerRendererChromium.h"
     39#include "NotImplemented.h"
    3940#include "RenderLayerBacking.h"
    4041#include "VideoFrameChromium.h"
  • trunk/WebCore/rendering/HitTestResult.cpp

    r73535 r74969  
    2222#include "HitTestResult.h"
    2323
     24#include "DocumentMarkerController.h"
    2425#include "Frame.h"
    2526#include "FrameTree.h"
  • trunk/WebCore/rendering/InlineTextBox.cpp

    r74281 r74969  
    2727#include "ChromeClient.h"
    2828#include "Document.h"
     29#include "DocumentMarkerController.h"
    2930#include "Editor.h"
    3031#include "EllipsisBox.h"
  • trunk/WebCore/rendering/InlineTextBox.h

    r72847 r74969  
    3030
    3131struct CompositionUnderline;
     32struct DocumentMarker;
    3233
    3334const unsigned short cNoTruncation = USHRT_MAX;
  • trunk/WebCore/rendering/svg/SVGInlineFlowBox.cpp

    r68976 r74969  
    2626
    2727#if ENABLE(SVG)
     28#include "DocumentMarkerController.h"
    2829#include "GraphicsContext.h"
    2930#include "RenderSVGInlineText.h"
  • trunk/WebKit/chromium/src/WebFrameImpl.cpp

    r74749 r74969  
    8383#include "DocumentLoader.h"
    8484#include "DocumentMarker.h"
     85#include "DocumentMarkerController.h"
    8586#include "Editor.h"
    8687#include "EventHandler.h"
  • trunk/WebKit/efl/ewk/ewk_frame.cpp

    r74684 r74969  
    2525#include "ewk_frame.h"
    2626
     27#include "DocumentMarkerController.h"
    2728#include "EWebKit.h"
    2829#include "EventHandler.h"
  • trunk/WebKit/mac/WebView/WebFrame.mm

    r74566 r74969  
    5757#import <WebCore/AnimationController.h>
    5858#import <WebCore/CSSMutableStyleDeclaration.h>
     59#import <WebCore/CachedResourceLoader.h>
    5960#import <WebCore/Chrome.h>
    6061#import <WebCore/ColorMac.h>
    6162#import <WebCore/DOMImplementation.h>
    62 #import <WebCore/CachedResourceLoader.h>
    6363#import <WebCore/DocumentFragment.h>
     64#import <WebCore/DocumentMarkerController.h>
    6465#import <WebCore/EventHandler.h>
    6566#import <WebCore/EventNames.h>
  • trunk/WebKit/mac/WebView/WebHTMLView.mm

    r74751 r74969  
    8484#import <WebCore/Document.h>
    8585#import <WebCore/DocumentFragment.h>
     86#import <WebCore/DocumentMarkerController.h>
    8687#import <WebCore/DragController.h>
    8788#import <WebCore/Editor.h>
  • trunk/WebKit/win/WebFrame.cpp

    r73430 r74969  
    5959#include <WebCore/Document.h>
    6060#include <WebCore/DocumentLoader.h>
     61#include <WebCore/DocumentMarkerController.h>
    6162#include <WebCore/DOMImplementation.h>
    6263#include <WebCore/DOMWindow.h>
  • trunk/WebKit/win/WebView.cpp

    r73802 r74969  
    7676#include <WebCore/Cursor.h>
    7777#include <WebCore/Document.h>
     78#include <WebCore/DocumentMarkerController.h>
    7879#include <WebCore/DragController.h>
    7980#include <WebCore/DragData.h>
  • trunk/WebKit2/WebProcess/WebPage/FindController.cpp

    r72887 r74969  
    3232#include "WebPageProxyMessages.h"
    3333#include "WebProcess.h"
     34#include <WebCore/DocumentMarkerController.h>
    3435#include <WebCore/Frame.h>
    3536#include <WebCore/FrameView.h>
  • trunk/WebKit2/WebProcess/WebPage/WebPage.cpp

    r74704 r74969  
    6464#include <WebCore/ContextMenuController.h>
    6565#include <WebCore/DocumentLoader.h>
     66#include <WebCore/DocumentMarkerController.h>
    6667#include <WebCore/EventHandler.h>
    6768#include <WebCore/FocusController.h>
Note: See TracChangeset for help on using the changeset viewer.