[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

rjw rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 08:20:58 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 0ad4767c3621fbf5cd08f97ab96785bf3767e008
Author: rjw <rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Jan 6 21:55:38 2004 +0000

    	Fixed 3521814.  Finalize messages weren't being dispatched!
    
            Reviewed by John.
    
            * bindings/jni_jsobject.cpp:
            (JSObject::invoke):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@5859 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index 5a26a94..9bf5194 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,3 +1,12 @@
+2004-01-06  Richard Williamson   <rjw at apple.com>
+
+	Fixed 3521814.  Finalize messages weren't being dispatched!
+
+        Reviewed by John.
+
+        * bindings/jni_jsobject.cpp:
+        (JSObject::invoke):
+
 2004-01-05  Richard Williamson   <rjw at apple.com>
 
 	Added cache of JNI method IDs to minimize allocations.  This mitigates the problem
diff --git a/JavaScriptCore/bindings/jni_jsobject.cpp b/JavaScriptCore/bindings/jni_jsobject.cpp
index c7297eb..08e0696 100644
--- a/JavaScriptCore/bindings/jni_jsobject.cpp
+++ b/JavaScriptCore/bindings/jni_jsobject.cpp
@@ -390,6 +390,12 @@ jvalue JSObject::invoke (JSObjectCallContext *context)
                 result.l = (jobject) JSObject(nativeHandle).toString();
                 break;
             }
+
+            case Finalize: {
+                JSObject(nativeHandle).finalize();
+                break;
+            }
+            
             default: {
                 fprintf (stderr, "%s:  invalid JavaScript call\n", __PRETTY_FUNCTION__);
             }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list