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

eric at webkit.org eric at webkit.org
Wed Dec 22 11:49:11 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 6f76ea157b540467147ed1456d6ab84e6a0c8b91
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sun Aug 8 05:01:05 2010 +0000

    2010-08-07  Zoltan Horvath  <zoltan at webkit.org>
    
            Reviewed by Eric Seidel.
    
            Allow custom memory allocation control for EventHandlingState struct
            https://bugs.webkit.org/show_bug.cgi?id=43548
    
            Inherits the following class from FastAllocBase because it is
            instantiated by 'new':
    
            struct name         - instantiated at: WebCore/
            EventHandlingState  - html/HTMLInputElement.cpp:2051
    
            * html/HTMLInputElement.cpp:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@64936 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 36cb888..883933c 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,18 @@
+2010-08-07  Zoltan Horvath  <zoltan at webkit.org>
+
+        Reviewed by Eric Seidel.
+
+        Allow custom memory allocation control for EventHandlingState struct
+        https://bugs.webkit.org/show_bug.cgi?id=43548
+
+        Inherits the following class from FastAllocBase because it is
+        instantiated by 'new':
+
+        struct name         - instantiated at: WebCore/
+        EventHandlingState  - html/HTMLInputElement.cpp:2051
+
+        * html/HTMLInputElement.cpp:
+
 2010-08-07  Jay Civelli  <jcivelli at chromium.org>
 
         Reviewed by Eric Seidel.
diff --git a/WebCore/html/HTMLInputElement.cpp b/WebCore/html/HTMLInputElement.cpp
index f87a65f..3a6c984 100644
--- a/WebCore/html/HTMLInputElement.cpp
+++ b/WebCore/html/HTMLInputElement.cpp
@@ -2030,7 +2030,7 @@ bool HTMLInputElement::storesValueSeparateFromAttribute() const
     return false;
 }
 
-struct EventHandlingState {
+struct EventHandlingState : FastAllocBase {
     RefPtr<HTMLInputElement> m_currRadio;
     bool m_indeterminate;
     bool m_checked;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list