| 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 f93990ee0ba16534747677be9ecf34127851c02e..623300e24f8d41df0f6df971600da273490203ab 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;
|
|
|