summaryrefslogtreecommitdiff
path: root/Source/WebCore/bindings/v8/custom/V8MicroDataItemValueCustom.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/bindings/v8/custom/V8MicroDataItemValueCustom.cpp')
-rw-r--r--Source/WebCore/bindings/v8/custom/V8MicroDataItemValueCustom.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/WebCore/bindings/v8/custom/V8MicroDataItemValueCustom.cpp b/Source/WebCore/bindings/v8/custom/V8MicroDataItemValueCustom.cpp
index 7d13bfed4..6c2844748 100644
--- a/Source/WebCore/bindings/v8/custom/V8MicroDataItemValueCustom.cpp
+++ b/Source/WebCore/bindings/v8/custom/V8MicroDataItemValueCustom.cpp
@@ -39,13 +39,13 @@
namespace WebCore {
-v8::Handle<v8::Value> toV8(MicroDataItemValue* itemValue, v8::Isolate* isolate)
+v8::Handle<v8::Value> toV8(MicroDataItemValue* itemValue, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
{
if (!itemValue)
return v8::Null();
if (itemValue->isNode())
- return toV8(itemValue->getNode());
- return v8String(itemValue->getString());
+ return toV8(itemValue->getNode(), creationContext, isolate);
+ return v8String(itemValue->getString(), isolate);
}
}