Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(410)

Unified Diff: third_party/WebKit/Source/core/inspector/ThreadDebugger.h

Issue 1999843002: [DevTools] Move CommandLineAPI.getEventListeners to native (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@move-monitor-events-to-native
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/inspector/ThreadDebugger.h
diff --git a/third_party/WebKit/Source/core/inspector/ThreadDebugger.h b/third_party/WebKit/Source/core/inspector/ThreadDebugger.h
index 0b5f21520947c6ab3b28dd1b34bb0c63d1be6aee..f59043c6162d8d4023136fd2e49b493ad007ac59 100644
--- a/third_party/WebKit/Source/core/inspector/ThreadDebugger.h
+++ b/third_party/WebKit/Source/core/inspector/ThreadDebugger.h
@@ -34,7 +34,6 @@ public:
// V8DebuggerClient implementation.
void beginUserGesture() override;
void endUserGesture() override;
- void eventListeners(v8::Local<v8::Value>, V8EventListenerInfoList&) override;
String16 valueSubtype(v8::Local<v8::Value>) override;
bool formatAccessorsAsProperties(v8::Local<v8::Value>) override;
bool isExecutionAllowed() override;
@@ -72,6 +71,8 @@ private:
static void monitorEventsCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { setMonitorEventsCallback(info, true); }
static void unmonitorEventsCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { setMonitorEventsCallback(info, false); }
static void logCallback(const v8::FunctionCallbackInfo<v8::Value>&);
+
+ static void getEventListenersCallback(const v8::FunctionCallbackInfo<v8::Value>&);
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698