Index: third_party/WebKit/Source/platform/v8_inspector/public/V8EventListenerInfo.h |
diff --git a/third_party/WebKit/Source/platform/v8_inspector/public/V8EventListenerInfo.h b/third_party/WebKit/Source/platform/v8_inspector/public/V8EventListenerInfo.h |
index 1acb360647118860f3519afe769fb786de101216..03370be8da27a004a5c15af2daa2dcfdb4c51545 100644 |
--- a/third_party/WebKit/Source/platform/v8_inspector/public/V8EventListenerInfo.h |
+++ b/third_party/WebKit/Source/platform/v8_inspector/public/V8EventListenerInfo.h |
@@ -14,15 +14,17 @@ namespace blink { |
class V8EventListenerInfo { |
public: |
- V8EventListenerInfo(const String16& eventType, bool useCapture, v8::Local<v8::Object> handler) |
+ V8EventListenerInfo(const String16& eventType, bool useCapture, bool passive, v8::Local<v8::Object> handler) |
: eventType(eventType) |
, useCapture(useCapture) |
+ , passive(passive) |
, handler(handler) |
{ |
} |
const String16 eventType; |
bool useCapture; |
+ bool passive; |
v8::Local<v8::Object> handler; |
}; |