| Index: Source/bindings/v8/custom/V8InjectedScriptHostCustom.cpp | 
| diff --git a/Source/bindings/v8/custom/V8InjectedScriptHostCustom.cpp b/Source/bindings/v8/custom/V8InjectedScriptHostCustom.cpp | 
| index 8beb96690df629a32ba78718d9a546fd489e5f78..362bd6a41768d95b5b8a8eff65704effdf56e0a3 100644 | 
| --- a/Source/bindings/v8/custom/V8InjectedScriptHostCustom.cpp | 
| +++ b/Source/bindings/v8/custom/V8InjectedScriptHostCustom.cpp | 
| @@ -77,7 +77,7 @@ ScriptValue InjectedScriptHost::nodeAsScriptValue(ScriptState* state, Node* node | 
| v8::Local<v8::Context> context = state->context(); | 
| v8::Context::Scope contextScope(context); | 
|  | 
| -    ExceptionState exceptionState(isolate); | 
| +    ExceptionState exceptionState(v8::Handle<v8::Object>(), isolate); | 
| if (!BindingSecurity::shouldAllowAccessToNode(node, exceptionState)) | 
| return ScriptValue(v8::Null(isolate), isolate); | 
| return ScriptValue(toV8(node, v8::Handle<v8::Object>(), isolate), isolate); | 
|  |