[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:19:03 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 8f05335a8628996d83c472535ce2babc45703996
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Jul 19 09:40:26 2010 +0000

    2010-07-19  Hans Wennborg  <hans at chromium.org>
    
            Reviewed by Steve Block.
    
            Explicitly declare DeviceOrientationEvent destructor and define it in the .cpp file
            https://bugs.webkit.org/show_bug.cgi?id=42466
    
            (Original problem at https://bugs.webkit.org/show_bug.cgi?id=42447)
    
            No new functionality so no new tests.
    
            * dom/DeviceOrientationEvent.cpp:
            (WebCore::DeviceOrientationEvent::~DeviceOrientationEvent):
            Move here to avoid needing to have the full declaration of
            DeviceOrientation in DeviceOrientationEvent.h.
            * dom/DeviceOrientationEvent.h:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@63646 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 096166f..4261770 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,20 @@
+2010-07-19  Hans Wennborg  <hans at chromium.org>
+
+        Reviewed by Steve Block.
+
+        Explicitly declare DeviceOrientationEvent destructor and define it in the .cpp file
+        https://bugs.webkit.org/show_bug.cgi?id=42466
+
+        (Original problem at https://bugs.webkit.org/show_bug.cgi?id=42447)
+
+        No new functionality so no new tests.
+
+        * dom/DeviceOrientationEvent.cpp:
+        (WebCore::DeviceOrientationEvent::~DeviceOrientationEvent):
+        Move here to avoid needing to have the full declaration of
+        DeviceOrientation in DeviceOrientationEvent.h.
+        * dom/DeviceOrientationEvent.h:
+
 2010-07-18  Anders Carlsson  <andersca at apple.com>
 
         Fix Build.
diff --git a/WebCore/dom/DeviceOrientationEvent.cpp b/WebCore/dom/DeviceOrientationEvent.cpp
index 8a75226..992b6ce 100644
--- a/WebCore/dom/DeviceOrientationEvent.cpp
+++ b/WebCore/dom/DeviceOrientationEvent.cpp
@@ -32,6 +32,10 @@
 
 namespace WebCore {
 
+DeviceOrientationEvent::~DeviceOrientationEvent()
+{
+}
+
 DeviceOrientationEvent::DeviceOrientationEvent()
     : m_orientation(DeviceOrientation::create())
 {
diff --git a/WebCore/dom/DeviceOrientationEvent.h b/WebCore/dom/DeviceOrientationEvent.h
index 165b1df..bfdf8fb 100644
--- a/WebCore/dom/DeviceOrientationEvent.h
+++ b/WebCore/dom/DeviceOrientationEvent.h
@@ -26,13 +26,15 @@
 #ifndef DeviceOrientationEvent_h
 #define DeviceOrientationEvent_h
 
-#include "DeviceOrientation.h"
 #include "Event.h"
 
 namespace WebCore {
 
+class DeviceOrientation;
+
 class DeviceOrientationEvent : public Event {
 public:
+    ~DeviceOrientationEvent();
     static PassRefPtr<DeviceOrientationEvent> create()
     {
         return adoptRef(new DeviceOrientationEvent);

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list