| Index: third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.cpp | 
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.cpp | 
| index 90f40429aea05eb39c7772c8557e7cba648ef282..dd07b366483e66febaca9be15dc4c40f1ae99a9d 100644 | 
| --- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.cpp | 
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.cpp | 
| @@ -10151,20 +10151,20 @@ void postMessageImpl(const char* interfaceName, TestObject* instance, const v8:: | 
| exceptionState.throwIfNeeded(); | 
| return; | 
| } | 
| -    Transferables transferables; | 
| +    Transferables* transferables = Transferables::create(); | 
| if (info.Length() > 1) { | 
| const int transferablesArgIndex = 1; | 
| -        if (!SerializedScriptValue::extractTransferables(info.GetIsolate(), info[transferablesArgIndex], transferablesArgIndex, transferables, exceptionState)) { | 
| +        if (!SerializedScriptValue::extractTransferables(info.GetIsolate(), info[transferablesArgIndex], transferablesArgIndex, *transferables, exceptionState)) { | 
| exceptionState.throwIfNeeded(); | 
| return; | 
| } | 
| } | 
| -    RefPtr<SerializedScriptValue> message = SerializedScriptValueFactory::instance().create(info.GetIsolate(), info[0], &transferables, exceptionState); | 
| +    RefPtr<SerializedScriptValue> message = SerializedScriptValueFactory::instance().create(info.GetIsolate(), info[0], transferables, exceptionState); | 
| if (exceptionState.throwIfNeeded()) | 
| return; | 
| // FIXME: Only pass context/exceptionState if instance really requires it. | 
| ExecutionContext* context = currentExecutionContext(info.GetIsolate()); | 
| -    instance->postMessage(context, message.release(), transferables.messagePorts, exceptionState); | 
| +    instance->postMessage(context, message.release(), transferables->messagePorts, exceptionState); | 
| exceptionState.throwIfNeeded(); | 
| } | 
|  | 
|  |