Changeset 63014 in webkit


Ignore:
Timestamp:
Jul 9, 2010 5:11:50 PM (14 years ago)
Author:
dumi@chromium.org
Message:

Unreviewed, but pre-approved by Eric Seidel.

Remove unnecessary includes in header files in WebCore/css.
https://bugs.webkit.org/show_bug.cgi?id=41941

  • css/CSSComputedStyleDeclaration.h:
  • css/CSSFontFaceSource.cpp:

(WebCore::CSSFontFaceSource::getFontData):

  • css/CSSFontFaceSource.h:
  • css/CSSPrimitiveValueMappings.h:
  • css/StyleMedia.h:
Location:
trunk/WebCore
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r63013 r63014  
     12010-07-09  Dumitru Daniliuc  <dumi@chromium.org>
     2
     3        Unreviewed, but pre-approved by Eric Seidel.
     4
     5        Remove unnecessary includes in header files in WebCore/css.
     6        https://bugs.webkit.org/show_bug.cgi?id=41941
     7
     8        * css/CSSComputedStyleDeclaration.h:
     9        * css/CSSFontFaceSource.cpp:
     10        (WebCore::CSSFontFaceSource::getFontData):
     11        * css/CSSFontFaceSource.h:
     12        * css/CSSPrimitiveValueMappings.h:
     13        * css/StyleMedia.h:
     14
    1152010-07-09  Eric Seidel  <eric@webkit.org>
    216
  • trunk/WebCore/css/CSSComputedStyleDeclaration.h

    r59956 r63014  
    2323
    2424#include "CSSStyleDeclaration.h"
    25 #include "Node.h"
     25#include "PlatformString.h"
    2626#include "RenderStyleConstants.h"
     27#include <wtf/RefPtr.h>
    2728
    2829namespace WebCore {
     
    3132class CSSMutableStyleDeclaration;
    3233class CSSPrimitiveValue;
     34class Node;
     35class RenderStyle;
    3336class ShadowData;
    3437
  • trunk/WebCore/css/CSSFontFaceSource.cpp

    r62551 r63014  
    4343#include "SVGFontData.h"
    4444#include "SVGFontElement.h"
     45#include "SVGFontFaceElement.h"
    4546#include "SVGURIReference.h"
    4647#endif
     
    195196
    196197}
    197 
  • trunk/WebCore/css/CSSFontFaceSource.h

    r37183 r63014  
    3232#include <wtf/HashMap.h>
    3333
    34 #if ENABLE(SVG_FONTS)
    35 #include "SVGFontFaceElement.h"
    36 #endif
    37 
    3834namespace WebCore {
    3935
     
    4339class FontDescription;
    4440class SimpleFontData;
     41#if ENABLE(SVG_FONTS)
     42class SVGFontElement;
     43class SVGFontFaceElement;
     44#endif
     45
    4546
    4647class CSSFontFaceSource : public CachedResourceClient {
  • trunk/WebCore/css/CSSPrimitiveValueMappings.h

    r62821 r63014  
    3737#include "GraphicsTypes.h"
    3838#include "Path.h"
    39 #include "RenderStyleConstants.h"
    4039#include "SVGRenderStyleDefs.h"
    4140#include "TextDirection.h"
  • trunk/WebCore/css/StyleMedia.h

    r58168 r63014  
    2828#define StyleMedia_h
    2929
    30 #include "DOMWindow.h"
     30#include "PlatformString.h"
     31#include <wtf/PassRefPtr.h>
     32#include <wtf/RefCounted.h>
    3133
    3234namespace WebCore {
     35
     36class Frame;
    3337
    3438class StyleMedia : public RefCounted<StyleMedia> {
Note: See TracChangeset for help on using the changeset viewer.