We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5658a9 commit dc9702eCopy full SHA for dc9702e
packages/react-native/ReactCommon/jsinspector-modern/TracingAgent.cpp
@@ -53,7 +53,6 @@ TracingAgent::~TracingAgent() {
53
54
bool TracingAgent::handleRequest(const cdp::PreparsedRequest& req) {
55
if (req.method == "Tracing.start") {
56
- // @cdp Tracing.start support is experimental.
57
if (sessionState_.isDebuggerDomainEnabled) {
58
frontendChannel_(
59
cdp::jsonError(
@@ -81,7 +80,6 @@ bool TracingAgent::handleRequest(const cdp::PreparsedRequest& req) {
81
80
82
return true;
83
} else if (req.method == "Tracing.end") {
84
- // @cdp Tracing.end support is experimental.
85
auto state = hostTargetController_.stopTracing();
86
87
sessionState_.hasPendingTraceRecording = false;
0 commit comments