mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
e89e264a16
This corresponds to Chromium 85.0.4182.0. This roll includes: - Enable SameSiteByDefaultCookies and CookiesWithoutSameSiteMustBeSecure https://crrev.com/c/2231445 - [FlexNG] Enable FlexNG by default https://crrev.com/c/2216595 Closes #6151.
1.7 KiB
1.7 KiB
Home > puppeteer > Protocol > Tracing > TraceConfig
Protocol.Tracing.TraceConfig interface
Signature:
export interface TraceConfig
Properties
Property | Type | Description |
---|---|---|
enableArgumentFilter | boolean | Turns on argument filter. |
enableSampling | boolean | Turns on JavaScript stack sampling. |
enableSystrace | boolean | Turns on system tracing. |
excludedCategories | string[] | Excluded category filters. |
includedCategories | string[] | Included category filters. |
memoryDumpConfig | MemoryDumpConfig | Configuration for memory dump triggers. Used only when "memory-infra" category is enabled. |
recordMode | ('recordUntilFull' | 'recordContinuously' | 'recordAsMuchAsPossible' | 'echoToConsole') | Controls how the trace buffer stores data. (TraceConfigRecordMode enum) |
syntheticDelays | string[] | Configuration to synthesize the delays in tracing. |