[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

jshin at chromium.org jshin at chromium.org
Thu Apr 8 01:09:21 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit a02ded07fb2eb6a729fdd5ccc2ead95e200c0685
Author: jshin at chromium.org <jshin at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Jan 15 02:35:38 2010 +0000

    2010-01-14  Jungshik Shin  <jshin at chromium.org>
    
            Unreviewed, attempted build fix on chromium.
    
            Fix a Chromium build failure due to an unused variable in V8 binding.
    
            * bindings/v8/V8Collection.h:
            (WebCore::getIndexedPropertyOfCollection):
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53312 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index e868033..f91ca88 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,12 @@
+2010-01-14  Jungshik Shin  <jshin at chromium.org>
+
+        Unreviewed, attempted build fix on chromium.
+
+        Fix a Chromium build failure due to an unused variable in V8 binding. 
+
+        * bindings/v8/V8Collection.h:
+        (WebCore::getIndexedPropertyOfCollection):
+
 2010-01-14  Peter Kasting  <pkasting at google.com>
 
         Unreviewed, attempted build fix.
diff --git a/WebCore/bindings/v8/V8Collection.h b/WebCore/bindings/v8/V8Collection.h
index 2ead22f..1dbb1a2 100644
--- a/WebCore/bindings/v8/V8Collection.h
+++ b/WebCore/bindings/v8/V8Collection.h
@@ -95,8 +95,7 @@ namespace WebCore {
     {
         // FIXME: Assert that object must be a collection type.
         ASSERT(V8DOMWrapper::maybeDOMWrapper(object));
-        V8ClassIndex::V8WrapperType wrapperType = V8DOMWrapper::domWrapperType(object);
-        ASSERT(wrapperType != V8ClassIndex::NODE);
+        ASSERT(V8DOMWrapper::domWrapperType(object) != V8ClassIndex::NODE);
         Collection* collection = toNativeCollection<Collection>(object);
         return getV8Object<ItemType>(collection->item(index), implementationType);
     }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list