Changeset 51468 in webkit


Ignore:
Timestamp:
Nov 29, 2009 3:55:17 PM (14 years ago)
Author:
dbates@webkit.org
Message:

2009-11-28 Daniel Bates <dbates@webkit.org>

Reviewed by Dan Bernstein.

https://bugs.webkit.org/show_bug.cgi?id=31964

Removed #include StringImpl, StyleImage. Instead, forward declared them.
Also, we can substitute #include <wtf/PassRefPtr.h> for #include PlatformString.h,
since it seems we only really used it to include PassRefPtr.h.

No functionality was changed. So, no new tests.

  • rendering/style/ContentData.h:
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r51466 r51468  
     12009-11-28  Daniel Bates  <dbates@webkit.org>
     2
     3        Reviewed by Dan Bernstein.
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=31964
     6
     7        Removed #include StringImpl, StyleImage. Instead, forward declared them.
     8        Also, we can substitute #include <wtf/PassRefPtr.h> for #include PlatformString.h,
     9        since it seems we only really used it to include PassRefPtr.h.
     10
     11        No functionality was changed. So, no new tests.
     12
     13        * rendering/style/ContentData.h:
     14
    1152009-11-29  Zoltan Horvath  <zoltan@webkit.org>
    216
  • trunk/WebCore/rendering/style/ContentData.h

    r41726 r51468  
    2626#define ContentData_h
    2727
    28 #include "PlatformString.h"
    2928#include "RenderStyleConstants.h"
    30 #include "StringImpl.h"
    31 #include "StyleImage.h"
    3229#include <wtf/Noncopyable.h>
     30#include <wtf/PassRefPtr.h>
    3331
    3432namespace WebCore {
    3533
    3634class CounterContent;
     35class StringImpl;
     36class StyleImage;
    3737
    3838struct ContentData : Noncopyable {
Note: See TracChangeset for help on using the changeset viewer.