UNPKG

chrome-devtools-frontend

Version:
31 lines (29 loc) 1.49 kB
// Copyright 2026 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. export enum ExperimentName { ALL = '*', CAPTURE_NODE_CREATION_STACKS = 'capture-node-creation-stacks', LIVE_HEAP_PROFILE = 'live-heap-profile', PROTOCOL_MONITOR = 'protocol-monitor', SAMPLING_HEAP_PROFILER_TIMELINE = 'sampling-heap-profiler-timeline', SHOW_OPTION_TO_EXPOSE_INTERNALS_IN_HEAP_SNAPSHOT = 'show-option-to-expose-internals-in-heap-snapshot', TIMELINE_INVALIDATION_TRACKING = 'timeline-invalidation-tracking', TIMELINE_SHOW_ALL_EVENTS = 'timeline-show-all-events', TIMELINE_V8_RUNTIME_CALL_STATS = 'timeline-v8-runtime-call-stats', APCA = 'apca', FONT_EDITOR = 'font-editor', FULL_ACCESSIBILITY_TREE = 'full-accessibility-tree', CONTRAST_ISSUES = 'contrast-issues', EXPERIMENTAL_COOKIE_FEATURES = 'experimental-cookie-features', INSTRUMENTATION_BREAKPOINTS = 'instrumentation-breakpoints', AUTHORED_DEPLOYED_GROUPING = 'authored-deployed-grouping', JUST_MY_CODE = 'just-my-code', USE_SOURCE_MAP_SCOPES = 'use-source-map-scopes', TIMELINE_SHOW_POST_MESSAGE_EVENTS = 'timeline-show-postmessage-events', TIMELINE_DEBUG_MODE = 'timeline-debug-mode', // Adding or removing an entry from this enum? // You will need to update: // 1. DevToolsExperiments enum in host/UserMetrics.ts // 2. Maybe REGISTERED_EXPERIMENTS in EnvironmentHelpers.ts (to create this experiment in the test env) }