[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.15.1-1414-gc69ee75

eric at webkit.org eric at webkit.org
Thu Oct 29 20:51:50 UTC 2009


The following commit has been merged in the webkit-1.1 branch:
commit ff7c9743822e4379667c57a1b55ee936f96bf441
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Oct 26 04:33:02 2009 +0000

    2009-10-25  Anton Muhin  <antonm at chromium.org>
    
            Reviewed by Adam Barth.
    
            Reuse already fetched proxy.
            https://bugs.webkit.org/show_bug.cgi?id=30747
    
            * bindings/v8/V8DOMWrapper.cpp:
            (WebCore::V8DOMWrapper::convertNewNodeToV8Object):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@50049 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 10403f0..fa0827d 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,13 @@
+2009-10-25  Anton Muhin  <antonm at chromium.org>
+
+        Reviewed by Adam Barth.
+
+        Reuse already fetched proxy.
+        https://bugs.webkit.org/show_bug.cgi?id=30747
+
+        * bindings/v8/V8DOMWrapper.cpp:
+        (WebCore::V8DOMWrapper::convertNewNodeToV8Object):
+
 2009-10-25  Laszlo Gombos  <laszlo.1.gombos at nokia.com>
 
         Unreviewed build fix.
diff --git a/WebCore/bindings/v8/V8DOMWrapper.cpp b/WebCore/bindings/v8/V8DOMWrapper.cpp
index e09059b..d6ba422 100644
--- a/WebCore/bindings/v8/V8DOMWrapper.cpp
+++ b/WebCore/bindings/v8/V8DOMWrapper.cpp
@@ -1274,7 +1274,7 @@ v8::Handle<v8::Value> V8DOMWrapper::convertNewNodeToV8Object(Node* node, V8Proxy
 
     v8::Handle<v8::Context> context;
     if (proxy)
-        context = V8Proxy::context(proxy->frame());
+        context = proxy->context();
 
     // Enter the node's context and create the wrapper in that context.
     if (!context.IsEmpty())

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list