| 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 03370be8da27a004a5c15af2daa2dcfdb4c51545..d67063f666e685eca99e31e647834e34cc872e70 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/public/V8EventListenerInfo.h
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/public/V8EventListenerInfo.h
|
| @@ -14,6 +14,10 @@ namespace blink {
|
|
|
| class V8EventListenerInfo {
|
| public:
|
| + static const unsigned EventListenerFilterShowDescendants = 1 << 0;
|
| + static const unsigned EventListenerFilterShowPassive = 1 << 1;
|
| + static const unsigned EventListenerFilterShowBlocking = 1 << 2;
|
| +
|
| V8EventListenerInfo(const String16& eventType, bool useCapture, bool passive, v8::Local<v8::Object> handler)
|
| : eventType(eventType)
|
| , useCapture(useCapture)
|
|
|