Index: Source/core/frame/ConsoleBase.cpp |
diff --git a/Source/core/frame/ConsoleBase.cpp b/Source/core/frame/ConsoleBase.cpp |
index f1967b89ed556d43eee057d5472ef18b73e66e27..71749bea6c289e47b238e2540389228f4d00e436 100644 |
--- a/Source/core/frame/ConsoleBase.cpp |
+++ b/Source/core/frame/ConsoleBase.cpp |
@@ -189,17 +189,11 @@ static String formatTimelineTitle(const String& title) |
void ConsoleBase::timeline(ScriptState* scriptState, const String& title) |
{ |
- // FIXME(361045): remove InspectorInstrumentation calls once DevTools Timeline migrates to tracing. |
- InspectorInstrumentation::consoleTimeline(context(), title, scriptState); |
- |
TRACE_EVENT_COPY_ASYNC_BEGIN0("blink.console", formatTimelineTitle(title).utf8().data(), this); |
} |
void ConsoleBase::timelineEnd(ScriptState* scriptState, const String& title) |
{ |
- // FIXME(361045): remove InspectorInstrumentation calls once DevTools Timeline migrates to tracing. |
- InspectorInstrumentation::consoleTimelineEnd(context(), title, scriptState); |
- |
TRACE_EVENT_COPY_ASYNC_END0("blink.console", formatTimelineTitle(title).utf8().data(), this); |
} |