chrome-devtools-kotlin / org.hildan.chrome.devtools.domains.profiler.events / ProfilerEvent / ConsoleProfileStartedEvent

ConsoleProfileStartedEvent

data class ConsoleProfileStartedEvent : ProfilerEvent

Sent when new profile recording is started using console.profile() call.

Official doc

Constructors

<init>

Sent when new profile recording is started using console.profile() call.

ConsoleProfileStartedEvent(id: String, location: Location, title: String? = null)

Properties

id

val id: String

location

Location of console.profile().

val location: Location

title

Profile title passed as an argument to console.profile().

val title: String?