[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 11:16:36 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit d21a6a0ea485b5a3da0cce5e24a565f8d9dab8b0
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Jul 16 13:50:33 2010 +0000

    2010-07-16  Hans Wennborg  <hans at 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:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@63544 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index b83c70d..17e083a 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,14 @@
+2010-07-16  Hans Wennborg  <hans at 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:
+
 2010-07-16  Nikolas Zimmermann  <nzimmermann at rim.com>
 
         Reviewed by Dirk Schulze.
diff --git a/WebCore/dom/DeviceOrientationEvent.h b/WebCore/dom/DeviceOrientationEvent.h
index 604b35f..165b1df 100644
--- a/WebCore/dom/DeviceOrientationEvent.h
+++ b/WebCore/dom/DeviceOrientationEvent.h
@@ -26,12 +26,11 @@
 #ifndef DeviceOrientationEvent_h
 #define DeviceOrientationEvent_h
 
+#include "DeviceOrientation.h"
 #include "Event.h"
 
 namespace WebCore {
 
-class DeviceOrientation;
-
 class DeviceOrientationEvent : public Event {
 public:
     static PassRefPtr<DeviceOrientationEvent> create()

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list