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

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

Issue 2200273002: [DevTools] Cleanup mute exceptions, usecounter and deprecations in v8_inspector API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2205913002
Patch Set: Created 4 years, 4 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.cpp
diff --git a/third_party/WebKit/Source/core/inspector/ThreadDebugger.cpp b/third_party/WebKit/Source/core/inspector/ThreadDebugger.cpp
index dfcb09cf9231b9236be55ca9d9c6727525c5f31c..d3f00a7b07f39a4e27ac176d9f3c3b3168e71f1f 100644
--- a/third_party/WebKit/Source/core/inspector/ThreadDebugger.cpp
+++ b/third_party/WebKit/Source/core/inspector/ThreadDebugger.cpp
@@ -304,10 +304,10 @@ void ThreadDebugger::getEventListenersCallback(const v8::FunctionCallbackInfo<v8
V8EventListenerInfoList listenerInfo;
// eventListeners call can produce message on ErrorEvent during lazy event listener compilation.
if (groupId)
- debugger->muteWarningsAndDeprecations(groupId);
+ debugger->muteMetrics(groupId);
InspectorDOMDebuggerAgent::eventListenersInfoForTarget(isolate, info[0], listenerInfo);
if (groupId)
- debugger->unmuteWarningsAndDeprecations(groupId);
+ debugger->unmuteMetrics(groupId);
v8::Local<v8::Object> result = v8::Object::New(isolate);
AtomicString currentEventType;

Powered by Google App Engine
This is Rietveld 408576698