Changeset 51470 in webkit


Ignore:
Timestamp:
Nov 29, 2009 4:50:35 PM (14 years ago)
Author:
dbates@webkit.org
Message:

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

Reviewed by Eric Seidel.

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

Removed #include RenderStyle.h from file KeyframeAnimation.h. Instead,
forward declared it.

No functionality was changed. So, no new tests.

  • page/animation/KeyframeAnimation.cpp:
  • page/animation/KeyframeAnimation.h:
Location:
trunk/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r51469 r51470  
     12009-11-29  Daniel Bates  <dbates@webkit.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=31966
     6
     7        Removed #include RenderStyle.h from file KeyframeAnimation.h. Instead,
     8        forward declared it.
     9
     10        No functionality was changed. So, no new tests.
     11
     12        * page/animation/KeyframeAnimation.cpp:
     13        * page/animation/KeyframeAnimation.h:
     14
    1152009-11-29  Daniel Bates  <dbates@webkit.org>
    216
  • trunk/WebCore/page/animation/KeyframeAnimation.cpp

    r49711 r51470  
    3737#include "RenderLayer.h"
    3838#include "RenderLayerBacking.h"
     39#include "RenderStyle.h"
    3940#include <wtf/UnusedParam.h>
    4041
  • trunk/WebCore/page/animation/KeyframeAnimation.h

    r42360 r51470  
    3333#include "Document.h"
    3434#include "KeyframeList.h"
    35 #include "RenderStyle.h"
    3635
    3736namespace WebCore {
     37
     38class RenderStyle;
    3839
    3940// A KeyframeAnimation tracks the state of an explicit animation
Note: See TracChangeset for help on using the changeset viewer.