Index: Source/bindings/tests/results/V8TestObject.cpp |
diff --git a/Source/bindings/tests/results/V8TestObject.cpp b/Source/bindings/tests/results/V8TestObject.cpp |
index be7ed3726f57f6a4e6aa4ae6b346ec50c4abe56d..7d2554ac2797d6fbdd93268a49d8cc6311029c29 100644 |
--- a/Source/bindings/tests/results/V8TestObject.cpp |
+++ b/Source/bindings/tests/results/V8TestObject.cpp |
@@ -2233,7 +2233,7 @@ static void messagePortArrayAttributeGetterCallback(v8::Local<v8::String>, const |
static void messagePortArrayAttributeSetter(v8::Local<v8::Value> jsValue, const v8::PropertyCallbackInfo<void>& info) |
{ |
TestObject* imp = V8TestObject::toNative(info.Holder()); |
- V8TRYCATCH_VOID(Vector<RefPtr<MessagePort> >, cppValue, (toRefPtrNativeArray<MessagePort, V8MessagePort>(jsValue, 0, info.GetIsolate()))); |
+ V8TRYCATCH_VOID(Vector<RefPtrWillBeRawPtr<MessagePort> >, cppValue, (toRefPtrNativeArray<MessagePort, V8MessagePort>(jsValue, 0, info.GetIsolate()))); |
haraken
2014/02/24 13:28:36
Why do we observe a change to bindings/tests/resul
|
imp->setMessagePortArray(cppValue); |
} |