[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.15.1-1414-gc69ee75
oliver at apple.com
oliver at apple.com
Thu Oct 29 20:40:42 UTC 2009
The following commit has been merged in the webkit-1.1 branch:
commit 923a762fbcf1cfa4fc750692c6403aaa737aea34
Author: oliver at apple.com <oliver at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Wed Oct 7 02:29:15 2009 +0000
Build fix
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@49216 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 35d66cd..e951649 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -2,6 +2,18 @@
Reviewed by NOBODY (Build fix).
+ More build fixes.
+
+ * bindings/js/SerializedScriptValue.cpp:
+ (WebCore::DeserializingTreeWalker::getProperty):
+ (WebCore::TeardownTreeWalker::getProperty):
+ * bindings/js/SerializedScriptValue.h:
+ (WebCore::SerializedScriptValue::SerializedScriptValue):
+
+2009-10-06 Oliver Hunt <oliver at apple.com>
+
+ Reviewed by NOBODY (Build fix).
+
Build and formatting fix.
* ForwardingHeaders/runtime/ExceptionHelpers.h: Added.
diff --git a/WebCore/bindings/js/SerializedScriptValue.cpp b/WebCore/bindings/js/SerializedScriptValue.cpp
index d112104..48cd92d 100644
--- a/WebCore/bindings/js/SerializedScriptValue.cpp
+++ b/WebCore/bindings/js/SerializedScriptValue.cpp
@@ -622,6 +622,7 @@ struct DeserializingTreeWalker : public BaseWalker {
SerializedScriptValueData getProperty(RefPtr<SerializedObject> object, const RefPtr<StringImpl>& propertyName, unsigned propertyIndex)
{
ASSERT(object->names()[propertyIndex] == propertyName);
+ UNUSED_PARAM(propertyName);
return object->values()[propertyIndex];
}
@@ -776,6 +777,7 @@ struct TeardownTreeWalker {
SerializedScriptValueData getProperty(RefPtr<SerializedObject> object, const RefPtr<StringImpl>& propertyName, unsigned propertyIndex)
{
ASSERT(object->names()[propertyIndex] == propertyName);
+ UNUSED_PARAM(propertyName);
return object->values()[propertyIndex];
}
diff --git a/WebCore/bindings/js/SerializedScriptValue.h b/WebCore/bindings/js/SerializedScriptValue.h
index 3032120..f8a126f 100644
--- a/WebCore/bindings/js/SerializedScriptValue.h
+++ b/WebCore/bindings/js/SerializedScriptValue.h
@@ -189,6 +189,7 @@ namespace WebCore {
: m_value(value)
, m_mustCopy(false)
{
+ }
SerializedScriptValueData m_value;
bool m_mustCopy;
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list