| Index: third_party/WebKit/Source/platform/v8_inspector/V8InjectedScriptHost.cpp
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8InjectedScriptHost.cpp b/third_party/WebKit/Source/platform/v8_inspector/V8InjectedScriptHost.cpp
|
| index a15552bc3c419a766b4781ffd4415373b01d0121..73f1a1ce008f76040ad3cb6b65573a3404a92004 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8InjectedScriptHost.cpp
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8InjectedScriptHost.cpp
|
| @@ -179,6 +179,7 @@ static v8::Local<v8::Array> wrapListenerFunctions(v8::Isolate* isolate, const V8
|
| v8::Local<v8::Object> listenerEntry = v8::Object::New(isolate);
|
| listenerEntry->Set(toV8StringInternalized(isolate, "listener"), function);
|
| listenerEntry->Set(toV8StringInternalized(isolate, "useCapture"), v8::Boolean::New(isolate, listeners[i].useCapture));
|
| + listenerEntry->Set(toV8StringInternalized(isolate, "passive"), v8::Boolean::New(isolate, listeners[i].passive));
|
| result->Set(v8::Number::New(isolate, outputIndex++), listenerEntry);
|
| }
|
| return result;
|
|
|