[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.18-1-697-g2f78b87
jshin at chromium.org
jshin at chromium.org
Wed Jan 20 22:25:19 UTC 2010
The following commit has been merged in the debian/unstable branch:
commit 5e04a44f0c620fbb4194bb9016365b68e0efb84a
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