Changeset 63544 in webkit


Ignore:
Timestamp:
Jul 16, 2010 6:50:33 AM (14 years ago)
Author:
commit-queue@webkit.org
Message:

2010-07-16 Hans Wennborg <hans@chromium.org>

Reviewed by Steve Block.

DeviceOrientationEvent.h should not forward-declare DeviceOrientation
https://bugs.webkit.org/show_bug.cgi?id=42447

When destructing m_orientation, DeviceOrientation cannot be an incomplete type.

  • dom/DeviceOrientationEvent.h:
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r63542 r63544  
     12010-07-16  Hans Wennborg  <hans@chromium.org>
     2
     3        Reviewed by Steve Block.
     4
     5        DeviceOrientationEvent.h should not forward-declare DeviceOrientation
     6        https://bugs.webkit.org/show_bug.cgi?id=42447
     7
     8        When destructing m_orientation, DeviceOrientation cannot be an incomplete type.
     9
     10        * dom/DeviceOrientationEvent.h:
     11
    1122010-07-16  Nikolas Zimmermann  <nzimmermann@rim.com>
    213
  • trunk/WebCore/dom/DeviceOrientationEvent.h

    r63193 r63544  
    2727#define DeviceOrientationEvent_h
    2828
     29#include "DeviceOrientation.h"
    2930#include "Event.h"
    3031
    3132namespace WebCore {
    32 
    33 class DeviceOrientation;
    3433
    3534class DeviceOrientationEvent : public Event {
Note: See TracChangeset for help on using the changeset viewer.