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

darin at apple.com darin at apple.com
Wed Dec 22 13:17:23 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 137987a6a7a5c5526173073e55d28582da9d261d
Author: darin at apple.com <darin at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Sep 10 11:36:40 2010 +0000

    2010-09-08  Darin Adler  <darin at apple.com>
    
            Reviewed by Adam Barth.
    
            Move functions from Frame to Editor as planned
            https://bugs.webkit.org/show_bug.cgi?id=45218
    
            * src/ContextMenuClientImpl.cpp:
            (WebKit::selectMisspelledWord):
            (WebKit::ContextMenuClientImpl::getCustomMenuFromDefaultItems):
            * src/WebFrameImpl.cpp:
            (WebKit::WebFrameImpl::find):
            (WebKit::WebFrameImpl::stopFinding):
            (WebKit::WebFrameImpl::scopeStringMatches):
            * src/WebViewImpl.cpp:
            (WebKit::WebViewImpl::caretOrSelectionBounds):
            Changed call sites to use editor().
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@67188 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/chromium/ChangeLog b/WebKit/chromium/ChangeLog
index e9f6354..adc37dc 100644
--- a/WebKit/chromium/ChangeLog
+++ b/WebKit/chromium/ChangeLog
@@ -53,13 +53,22 @@
         * src/WebKit.cpp:
         (WebKit::areLayoutTestImagesOpaque): Make linux match windows.
 
+2010-09-10  Jay Civelli  <jcivelli at chromium.org>
+
+        Reviewed by Darin Fisher.
+
+        Add the destructor to WebDOMEvent to prevent a leak.
+        https://bugs.webkit.org/show_bug.cgi?id=45287
+
+        * public/WebDOMEvent.h:
+        (WebKit::WebDOMEvent::~WebDOMEvent):
+
 2010-09-09  Chris Guillory  <chris.guillory at google.com>
 
         Reviewed by Chris Fleizach.
 
         Add methods used to determine accessibility state.
         https://bugs.webkit.org/show_bug.cgi?id=45434
-        
 
         * public/WebAccessibilityObject.h:
         * src/WebAccessibilityObject.cpp:
diff --git a/WebKit/chromium/public/WebDOMEvent.h b/WebKit/chromium/public/WebDOMEvent.h
index d34c8d4..fa02b0c 100644
--- a/WebKit/chromium/public/WebDOMEvent.h
+++ b/WebKit/chromium/public/WebDOMEvent.h
@@ -50,6 +50,8 @@ public:
         BubblingPhase      = 3
     };
 
+    ~WebDOMEvent() { reset(); }
+
     WebDOMEvent() : m_private(0) { }
     WebDOMEvent(const WebDOMEvent& e) : m_private(0) { assign(e); }
     WebDOMEvent& operator=(const WebDOMEvent& e)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list