chrome-devtools-frontend 1.0.1669021 → 1.0.1672388
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.agents/skills/fixing-skipped-tests/SKILL.md +6 -6
- package/.agents/skills/gerrit-cli/SKILL.md +4 -10
- package/.agents/skills/gerrit-cli/references/commands.md +45 -2
- package/.agents/skills/gerrit-cli/references/workflows.md +7 -0
- package/.agents/skills/gerrit-cli/scripts/import_upstream.py +34 -152
- package/config/typescript/tsconfig.eslint.json +1 -1
- package/docs/contributing/settings-experiments-features.md +2 -8
- package/docs/ecosystem/automatic_workspace_folders.md +0 -19
- package/eslint.config.mjs +2 -2
- package/front_end/core/common/Lazy.ts +3 -3
- package/front_end/core/common/SettingRegistration.ts +0 -7
- package/front_end/core/common/Settings.ts +0 -38
- package/front_end/core/host/UserMetrics.ts +187 -953
- package/front_end/core/host/UserMetricsEnums.d.ts +949 -0
- package/front_end/core/root/Runtime.ts +21 -133
- package/front_end/core/sdk/CSSMetadata.ts +70 -65
- package/front_end/core/sdk/CategorizedBreakpoint.ts +0 -1
- package/front_end/core/sdk/ChildTargetManager.ts +0 -2
- package/front_end/core/sdk/EmulationModel.ts +0 -2
- package/front_end/core/sdk/EventBreakpointsModel.ts +0 -4
- package/front_end/core/sdk/NetworkManager.ts +0 -3
- package/front_end/core/sdk/PageResourceLoader.ts +9 -9
- package/front_end/core/sdk/RehydratingConnection.ts +52 -4
- package/front_end/core/sdk/Target.ts +0 -4
- package/front_end/devtools_compatibility.js +886 -0
- package/front_end/entrypoints/inspector_main/RenderingOptions.ts +7 -6
- package/front_end/entrypoints/main/ExecutionContextSelector.ts +0 -1
- package/front_end/entrypoints/main/MainImpl.ts +18 -22
- package/front_end/foundation/Universe.ts +7 -2
- package/front_end/generated/InspectorBackendCommands.ts +3 -10
- package/front_end/generated/protocol-mapping.d.ts +0 -42
- package/front_end/generated/protocol-proxy-api.d.ts +0 -38
- package/front_end/generated/protocol.ts +9 -169
- package/front_end/models/ai_assistance/AiAgent2.ts +11 -3
- package/front_end/models/ai_assistance/AiConversation.ts +1 -0
- package/front_end/models/ai_assistance/AiHistoryStorage.ts +8 -5
- package/front_end/models/ai_assistance/AiSetting.ts +108 -0
- package/front_end/models/ai_assistance/AiUtils.ts +47 -0
- package/front_end/models/ai_assistance/ChangeManager.ts +1 -0
- package/front_end/models/ai_assistance/ExtensionScope.ts +3 -12
- package/front_end/models/ai_assistance/agents/AiAgent.ts +11 -18
- package/front_end/models/ai_assistance/agents/ContextSelectionAgent.ts +3 -0
- package/front_end/models/ai_assistance/agents/ExecuteJavascript.ts +42 -17
- package/front_end/models/ai_assistance/agents/PerformanceAgent.ts +3 -2
- package/front_end/models/ai_assistance/agents/StorageAgent.ts +253 -155
- package/front_end/models/ai_assistance/agents/StylingAgent.snapshot.txt +2 -2
- package/front_end/models/ai_assistance/ai_assistance.ts +4 -0
- package/front_end/models/ai_assistance/contexts/PerformanceTraceContext.ts +12 -6
- package/front_end/models/ai_assistance/data_formatters/FileFormatter.ts +3 -1
- package/front_end/models/ai_assistance/data_formatters/NetworkRequestFormatter.ts +1 -0
- package/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.ts +1 -0
- package/front_end/models/ai_assistance/injected.ts +1 -0
- package/front_end/models/ai_assistance/performance/AICallTree.ts +1 -0
- package/front_end/models/ai_assistance/skills/Skill.ts +1 -1
- package/front_end/models/ai_assistance/skills/SkillRegistry.ts +2 -0
- package/front_end/models/ai_assistance/skills/performance.md +10 -0
- package/front_end/models/ai_assistance/tools/ExecuteJavaScript.ts +52 -5
- package/front_end/models/ai_assistance/tools/GetElementAccessibilityDetails.ts +4 -4
- package/front_end/models/ai_assistance/tools/GetLighthouseAudits.ts +4 -4
- package/front_end/models/ai_assistance/tools/GetNetworkRequestDetails.ts +5 -4
- package/front_end/models/ai_assistance/tools/GetStyles.ts +5 -4
- package/front_end/models/ai_assistance/tools/ListNetworkRequests.ts +5 -4
- package/front_end/models/ai_assistance/tools/README.md +1 -1
- package/front_end/models/ai_assistance/tools/RecordPerformanceTrace.ts +63 -0
- package/front_end/models/ai_assistance/tools/ResolveDevtoolsNodePath.ts +5 -5
- package/front_end/models/ai_assistance/tools/Tool.ts +118 -24
- package/front_end/models/ai_assistance/tools/ToolRegistry.ts +2 -0
- package/front_end/models/badges/UserBadges.ts +2 -0
- package/front_end/models/bindings/NetworkProject.ts +5 -0
- package/front_end/models/bindings/ResourceScriptMapping.ts +2 -0
- package/front_end/models/bindings/ResourceUtils.ts +3 -0
- package/front_end/models/crux-manager/CrUXManager.ts +1 -0
- package/front_end/models/emulation/DeviceModeModel.ts +140 -7
- package/front_end/models/emulation/EmulatedDevices.ts +246 -793
- package/front_end/models/issues_manager/IssuesManager.ts +10 -2
- package/front_end/models/live-metrics/LiveMetrics.ts +41 -9
- package/front_end/models/logs/LogManager.ts +8 -5
- package/front_end/models/logs/NetworkLog.ts +1 -0
- package/front_end/models/persistence/IsolatedFileSystemManager.ts +21 -3
- package/front_end/models/persistence/NetworkPersistenceManager.ts +6 -0
- package/front_end/models/project_settings/ProjectSettingsModel.ts +8 -12
- package/front_end/models/trace_source_maps_resolver/SourceMapsResolver.ts +3 -1
- package/front_end/models/workspace/IgnoreListManager.ts +2 -0
- package/front_end/models/workspace/UISourceCode.ts +2 -0
- package/front_end/models/workspace_diff/WorkspaceDiff.ts +4 -0
- package/front_end/panels/ai_assistance/AiAssistancePanel.ts +22 -22
- package/front_end/panels/ai_assistance/ai_assistance-meta.ts +0 -7
- package/front_end/panels/ai_assistance/components/ChatInput.ts +4 -0
- package/front_end/panels/ai_assistance/components/ChatMessage.ts +79 -34
- package/front_end/panels/ai_assistance/components/WalkthroughView.ts +1 -2
- package/front_end/panels/ai_assistance/components/walkthroughView.css +1 -1
- package/front_end/panels/application/ApplicationPanelSidebar.ts +9 -106
- package/front_end/panels/application/ApplicationPanelTreeElement.ts +1 -1
- package/front_end/panels/application/application.ts +0 -10
- package/front_end/panels/application/components/components.ts +0 -4
- package/front_end/panels/browser_debugger/CategorizedBreakpointsSidebarPane.ts +0 -5
- package/front_end/panels/browser_debugger/EventListenerBreakpointsSidebarPane.ts +6 -12
- package/front_end/panels/browser_debugger/browser_debugger-meta.ts +5 -3
- package/front_end/panels/console/ConsoleFormat.ts +2 -62
- package/front_end/panels/console/ConsoleViewMessage.ts +14 -7
- package/front_end/panels/emulation/AdvancedApp.ts +1 -2
- package/front_end/panels/emulation/DeviceModeToolbar.ts +83 -69
- package/front_end/panels/emulation/DeviceModeView.ts +4 -134
- package/front_end/panels/emulation/DeviceModeWrapper.ts +52 -69
- package/front_end/panels/emulation/MediaQueryInspector.ts +2 -2
- package/front_end/panels/emulation/emulation-meta.ts +12 -12
- package/front_end/panels/issues/IssuesPane.ts +3 -1
- package/front_end/panels/lighthouse/LighthouseController.ts +6 -0
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryInspector.ts +17 -21
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryNavigator.ts +206 -126
- package/front_end/panels/linear_memory_inspector/components/linearMemoryInspector.css +1 -1
- package/front_end/panels/mobile_throttling/CalibrationController.ts +1 -1
- package/front_end/panels/mobile_throttling/MobileThrottlingSelector.ts +3 -3
- package/front_end/panels/mobile_throttling/NetworkPanelIndicator.ts +6 -6
- package/front_end/panels/mobile_throttling/NetworkThrottlingSelector.ts +11 -11
- package/front_end/panels/mobile_throttling/ThrottlingManager.ts +13 -13
- package/front_end/panels/mobile_throttling/ThrottlingPresets.ts +10 -10
- package/front_end/panels/mobile_throttling/ThrottlingSettingsTab.ts +28 -28
- package/front_end/panels/mobile_throttling/mobile_throttling-meta.ts +6 -6
- package/front_end/panels/network/RequestHeadersView.ts +1 -1
- package/front_end/panels/network/ResourceChunkView.ts +243 -144
- package/front_end/panels/network/ResourceDirectSocketChunkView.ts +52 -29
- package/front_end/panels/network/ResourceWebSocketFrameView.ts +21 -35
- package/front_end/panels/network/resourceChunkView.css +41 -36
- package/front_end/panels/profiler/HeapDetachedElementsDataGrid.ts +21 -12
- package/front_end/panels/profiler/profiler.ts +4 -0
- package/front_end/panels/recorder/RecorderPanel.ts +6 -14
- package/front_end/panels/sensors/LocationsSettingsTab.ts +7 -7
- package/front_end/panels/settings/AISettingsTab.ts +75 -31
- package/front_end/panels/settings/SettingsScreen.ts +8 -13
- package/front_end/panels/settings/components/SyncSection.ts +3 -4
- package/front_end/panels/settings/emulation/DevicesSettingsTab.ts +200 -18
- package/front_end/panels/settings/emulation/devicesSettingsTab.css +18 -0
- package/front_end/panels/settings/settings-meta.ts +0 -1
- package/front_end/panels/sources/CategorizedBreakpointL10n.ts +0 -2
- package/front_end/panels/sources/DebuggerPausedMessage.ts +11 -5
- package/front_end/panels/sources/DebuggerPlugin.ts +1 -1
- package/front_end/panels/sources/EditingLocationHistoryManager.ts +12 -9
- package/front_end/panels/sources/SourcesPanel.ts +19 -17
- package/front_end/panels/sources/SourcesView.ts +191 -96
- package/front_end/panels/sources/TabbedEditorContainer.ts +3 -4
- package/front_end/panels/sources/WatchExpressionsSidebarPane.ts +2 -5
- package/front_end/panels/timeline/TimelineUIUtils.ts +15 -0
- package/front_end/panels/timeline/timeline-meta.ts +3 -5
- package/front_end/third_party/chromium/README.chromium +1 -1
- package/front_end/third_party/codemirror.next/chunk/angular.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/codemirror.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/codemirror.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/cpp.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/cpp.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/java.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/java.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/legacy.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/less.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/less.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/markdown.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/markdown.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/php.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/php.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/python.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/python.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/sass.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/sass.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/svelte.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/svelte.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/vue.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/wast.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/wast.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/xml.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/xml.js.map +1 -1
- package/front_end/third_party/codemirror.next/codemirror.next.d.ts +1332 -193
- package/front_end/third_party/codemirror.next/codemirror.next.js +1 -1
- package/front_end/third_party/codemirror.next/rebuild.sh +1 -1
- package/front_end/tsconfig.compatibility.json +2 -1
- package/front_end/tsconfig.json +1 -1
- package/front_end/ui/components/icon_button/IconButton.ts +1 -1
- package/front_end/ui/components/issue_counter/IssueCounter.ts +1 -1
- package/front_end/ui/components/settings/SettingCheckbox.ts +4 -7
- package/front_end/ui/components/settings/settings.ts +1 -2
- package/front_end/ui/legacy/Treeoutline.ts +52 -30
- package/front_end/ui/legacy/components/object_ui/CSSStyleSanitizer.ts +74 -0
- package/front_end/ui/legacy/components/object_ui/CustomPreviewComponent.ts +6 -1
- package/front_end/ui/legacy/components/object_ui/ObjectPropertiesSection.ts +47 -54
- package/front_end/ui/legacy/components/object_ui/object_ui.ts +2 -0
- package/front_end/ui/legacy/components/quick_open/CommandMenu.ts +5 -27
- package/front_end/ui/legacy/components/settings_ui/SettingsUI.ts +10 -12
- package/front_end/ui/settings/SettingUIRegistration.ts +0 -8
- package/front_end/ui/visual_logging/KnownContextValues.ts +21 -0
- package/inspector_overlay/tsconfig.json +8 -2
- package/package.json +3 -2
- package/.agents/skills/gerrit-cli/scripts/gerrit_client_wrapper.py +0 -47
- package/front_end/core/sdk/CSSModel.test.api.ts +0 -102
- package/front_end/core/sdk/DOMModel.test.api.ts +0 -104
- package/front_end/foundation/Universe.test.api.ts +0 -73
- package/front_end/panels/application/SharedStorageEventsView.ts +0 -128
- package/front_end/panels/application/SharedStorageItemsView.ts +0 -179
- package/front_end/panels/application/SharedStorageListTreeElement.ts +0 -65
- package/front_end/panels/application/SharedStorageModel.ts +0 -249
- package/front_end/panels/application/SharedStorageTreeElement.ts +0 -40
- package/front_end/panels/application/components/SharedStorageAccessGrid.ts +0 -191
- package/front_end/panels/application/components/SharedStorageMetadataView.ts +0 -133
- package/front_end/panels/application/components/sharedStorageAccessGrid.css +0 -29
- package/front_end/panels/application/components/sharedStorageMetadataView.css +0 -29
- package/front_end/panels/application/sharedStorageEventsView.css +0 -9
- package/front_end/panels/network/OriginalResourceChunkView.ts +0 -340
- package/front_end/panels/network/originalResourceChunkView.css +0 -49
- package/front_end/ui/components/settings/SettingDeprecationWarning.ts +0 -47
- package/front_end/ui/components/settings/settingDeprecationWarning.css +0 -14
|
@@ -406,6 +406,892 @@
|
|
|
406
406
|
const DevToolsAPI = new DevToolsAPIImpl();
|
|
407
407
|
window.DevToolsAPI = DevToolsAPI;
|
|
408
408
|
|
|
409
|
+
// LINT.IfChange(DevToolsMetrics)
|
|
410
|
+
/**
|
|
411
|
+
* The numeric enum values are not necessarily continuous! It is possible that
|
|
412
|
+
* values have been removed, which results in gaps in the sequence of values.
|
|
413
|
+
* When adding a new value:
|
|
414
|
+
* 1. Add an entry to the bottom of the enum before 'MAX_VALUE'.
|
|
415
|
+
* 2. Set the value of the new entry to the current value of 'MAX_VALUE'.
|
|
416
|
+
* 2. Increment the value of 'MAX_VALUE' by 1.
|
|
417
|
+
* When removing a value which is no longer needed:
|
|
418
|
+
* 1. Delete the line with the unneeded value
|
|
419
|
+
* 2. Do not update any 'MAX_VALUE' or any other value.
|
|
420
|
+
*/
|
|
421
|
+
window.DevToolsMetrics = {
|
|
422
|
+
Action: {
|
|
423
|
+
WindowDocked: 1,
|
|
424
|
+
WindowUndocked: 2,
|
|
425
|
+
ScriptsBreakpointSet: 3,
|
|
426
|
+
TimelineStarted: 4,
|
|
427
|
+
ProfilesCPUProfileTaken: 5,
|
|
428
|
+
ProfilesHeapProfileTaken: 6,
|
|
429
|
+
ConsoleEvaluated: 8,
|
|
430
|
+
FileSavedInWorkspace: 9,
|
|
431
|
+
DeviceModeEnabled: 10,
|
|
432
|
+
AnimationsPlaybackRateChanged: 11,
|
|
433
|
+
RevisionApplied: 12,
|
|
434
|
+
FileSystemDirectoryContentReceived: 13,
|
|
435
|
+
StyleRuleEdited: 14,
|
|
436
|
+
CommandEvaluatedInConsolePanel: 15,
|
|
437
|
+
DOMPropertiesExpanded: 16,
|
|
438
|
+
ResizedViewInResponsiveMode: 17,
|
|
439
|
+
TimelinePageReloadStarted: 18,
|
|
440
|
+
ConnectToNodeJSFromFrontend: 19,
|
|
441
|
+
ConnectToNodeJSDirectly: 20,
|
|
442
|
+
CpuThrottlingEnabled: 21,
|
|
443
|
+
CpuProfileNodeFocused: 22,
|
|
444
|
+
CpuProfileNodeExcluded: 23,
|
|
445
|
+
SelectFileFromFilePicker: 24,
|
|
446
|
+
SelectCommandFromCommandMenu: 25,
|
|
447
|
+
ChangeInspectedNodeInElementsPanel: 26,
|
|
448
|
+
StyleRuleCopied: 27,
|
|
449
|
+
CoverageStarted: 28,
|
|
450
|
+
LighthouseStarted: 29,
|
|
451
|
+
LighthouseFinished: 30,
|
|
452
|
+
ShowedThirdPartyBadges: 31,
|
|
453
|
+
LighthouseViewTrace: 32,
|
|
454
|
+
FilmStripStartedRecording: 33,
|
|
455
|
+
CoverageReportFiltered: 34,
|
|
456
|
+
CoverageStartedPerBlock: 35,
|
|
457
|
+
'SettingsOpenedFromGear-deprecated': 36,
|
|
458
|
+
'SettingsOpenedFromMenu-deprecated': 37,
|
|
459
|
+
'SettingsOpenedFromCommandMenu-deprecated': 38,
|
|
460
|
+
TabMovedToDrawer: 39,
|
|
461
|
+
TabMovedToMainPanel: 40,
|
|
462
|
+
CaptureCssOverviewClicked: 41,
|
|
463
|
+
VirtualAuthenticatorEnvironmentEnabled: 42,
|
|
464
|
+
SourceOrderViewActivated: 43,
|
|
465
|
+
UserShortcutAdded: 44,
|
|
466
|
+
ShortcutRemoved: 45,
|
|
467
|
+
ShortcutModified: 46,
|
|
468
|
+
CustomPropertyLinkClicked: 47,
|
|
469
|
+
CustomPropertyEdited: 48,
|
|
470
|
+
ServiceWorkerNetworkRequestClicked: 49,
|
|
471
|
+
ServiceWorkerNetworkRequestClosedQuickly: 50,
|
|
472
|
+
NetworkPanelServiceWorkerRespondWith: 51,
|
|
473
|
+
NetworkPanelCopyValue: 52,
|
|
474
|
+
ConsoleSidebarOpened: 53,
|
|
475
|
+
PerfPanelTraceImported: 54,
|
|
476
|
+
PerfPanelTraceExported: 55,
|
|
477
|
+
StackFrameRestarted: 56,
|
|
478
|
+
CaptureTestProtocolClicked: 57,
|
|
479
|
+
BreakpointRemovedFromRemoveButton: 58,
|
|
480
|
+
BreakpointGroupExpandedStateChanged: 59,
|
|
481
|
+
HeaderOverrideFileCreated: 60,
|
|
482
|
+
HeaderOverrideEnableEditingClicked: 61,
|
|
483
|
+
HeaderOverrideHeaderAdded: 62,
|
|
484
|
+
HeaderOverrideHeaderEdited: 63,
|
|
485
|
+
HeaderOverrideHeaderRemoved: 64,
|
|
486
|
+
HeaderOverrideHeadersFileEdited: 65,
|
|
487
|
+
PersistenceNetworkOverridesEnabled: 66,
|
|
488
|
+
PersistenceNetworkOverridesDisabled: 67,
|
|
489
|
+
BreakpointRemovedFromContextMenu: 68,
|
|
490
|
+
BreakpointsInFileRemovedFromRemoveButton: 69,
|
|
491
|
+
BreakpointsInFileRemovedFromContextMenu: 70,
|
|
492
|
+
BreakpointsInFileCheckboxToggled: 71,
|
|
493
|
+
BreakpointsInFileEnabledDisabledFromContextMenu: 72,
|
|
494
|
+
BreakpointConditionEditedFromSidebar: 73,
|
|
495
|
+
WorkspaceTabAddFolder: 74,
|
|
496
|
+
WorkspaceTabRemoveFolder: 75,
|
|
497
|
+
OverrideTabAddFolder: 76,
|
|
498
|
+
OverrideTabRemoveFolder: 77,
|
|
499
|
+
WorkspaceSourceSelected: 78,
|
|
500
|
+
OverridesSourceSelected: 79,
|
|
501
|
+
StyleSheetInitiatorLinkClicked: 80,
|
|
502
|
+
BreakpointRemovedFromGutterContextMenu: 81,
|
|
503
|
+
BreakpointRemovedFromGutterToggle: 82,
|
|
504
|
+
StylePropertyInsideKeyframeEdited: 83,
|
|
505
|
+
OverrideContentFromSourcesContextMenu: 84,
|
|
506
|
+
OverrideContentFromNetworkContextMenu: 85,
|
|
507
|
+
OverrideScript: 86,
|
|
508
|
+
OverrideStyleSheet: 87,
|
|
509
|
+
OverrideDocument: 88,
|
|
510
|
+
OverrideFetchXHR: 89,
|
|
511
|
+
OverrideImage: 90,
|
|
512
|
+
OverrideFont: 91,
|
|
513
|
+
OverrideContentContextMenuSetup: 92,
|
|
514
|
+
OverrideContentContextMenuAbandonSetup: 93,
|
|
515
|
+
OverrideContentContextMenuActivateDisabled: 94,
|
|
516
|
+
OverrideContentContextMenuOpenExistingFile: 95,
|
|
517
|
+
OverrideContentContextMenuSaveNewFile: 96,
|
|
518
|
+
ShowAllOverridesFromSourcesContextMenu: 97,
|
|
519
|
+
ShowAllOverridesFromNetworkContextMenu: 98,
|
|
520
|
+
AnimationGroupsCleared: 99,
|
|
521
|
+
AnimationsPaused: 100,
|
|
522
|
+
AnimationsResumed: 101,
|
|
523
|
+
AnimatedNodeDescriptionClicked: 102,
|
|
524
|
+
AnimationGroupScrubbed: 103,
|
|
525
|
+
AnimationGroupReplayed: 104,
|
|
526
|
+
OverrideTabDeleteFolderContextMenu: 105,
|
|
527
|
+
WorkspaceDropFolder: 107,
|
|
528
|
+
WorkspaceSelectFolder: 108,
|
|
529
|
+
OverrideContentContextMenuSourceMappedWarning: 109,
|
|
530
|
+
OverrideContentContextMenuRedirectToDeployed: 110,
|
|
531
|
+
NewStyleRuleAdded: 111,
|
|
532
|
+
TraceExpanded: 112,
|
|
533
|
+
InsightConsoleMessageShown: 113,
|
|
534
|
+
InsightRequestedViaContextMenu: 114,
|
|
535
|
+
InsightRequestedViaHoverButton: 115,
|
|
536
|
+
InsightRatedPositive: 117,
|
|
537
|
+
InsightRatedNegative: 118,
|
|
538
|
+
InsightClosed: 119,
|
|
539
|
+
InsightErrored: 120,
|
|
540
|
+
InsightHoverButtonShown: 121,
|
|
541
|
+
SelfXssWarningConsoleMessageShown: 122,
|
|
542
|
+
SelfXssWarningDialogShown: 123,
|
|
543
|
+
SelfXssAllowPastingInConsole: 124,
|
|
544
|
+
SelfXssAllowPastingInDialog: 125,
|
|
545
|
+
ToggleEmulateFocusedPageFromStylesPaneOn: 126,
|
|
546
|
+
ToggleEmulateFocusedPageFromStylesPaneOff: 127,
|
|
547
|
+
ToggleEmulateFocusedPageFromRenderingTab: 128,
|
|
548
|
+
ToggleEmulateFocusedPageFromCommandMenu: 129,
|
|
549
|
+
InsightGenerated: 130,
|
|
550
|
+
InsightErroredApi: 131,
|
|
551
|
+
InsightErroredMarkdown: 132,
|
|
552
|
+
ToggleShowWebVitals: 133,
|
|
553
|
+
InsightErroredPermissionDenied: 134,
|
|
554
|
+
InsightErroredCannotSend: 135,
|
|
555
|
+
InsightErroredRequestFailed: 136,
|
|
556
|
+
InsightErroredCannotParseChunk: 137,
|
|
557
|
+
InsightErroredUnknownChunk: 138,
|
|
558
|
+
InsightErroredOther: 139,
|
|
559
|
+
AutofillReceived: 140,
|
|
560
|
+
AutofillReceivedAndTabAutoOpened: 141,
|
|
561
|
+
AnimationGroupSelected: 142,
|
|
562
|
+
ScrollDrivenAnimationGroupSelected: 143,
|
|
563
|
+
ScrollDrivenAnimationGroupScrubbed: 144,
|
|
564
|
+
AiAssistanceOpenedFromElementsPanel: 145,
|
|
565
|
+
AiAssistanceOpenedFromStylesTab: 146,
|
|
566
|
+
ConsoleFilterByContext: 147,
|
|
567
|
+
ConsoleFilterBySource: 148,
|
|
568
|
+
ConsoleFilterByUrl: 149,
|
|
569
|
+
InsightConsentReminderShown: 150,
|
|
570
|
+
InsightConsentReminderCanceled: 151,
|
|
571
|
+
InsightConsentReminderConfirmed: 152,
|
|
572
|
+
InsightsOnboardingShown: 153,
|
|
573
|
+
InsightsOnboardingCanceledOnPage1: 154,
|
|
574
|
+
InsightsOnboardingCanceledOnPage2: 155,
|
|
575
|
+
InsightsOnboardingConfirmed: 156,
|
|
576
|
+
InsightsOnboardingNextPage: 157,
|
|
577
|
+
InsightsOnboardingPrevPage: 158,
|
|
578
|
+
InsightsOnboardingFeatureDisabled: 159,
|
|
579
|
+
InsightsOptInTeaserShown: 160,
|
|
580
|
+
InsightsOptInTeaserSettingsLinkClicked: 161,
|
|
581
|
+
InsightsOptInTeaserConfirmedInSettings: 162,
|
|
582
|
+
InsightsReminderTeaserShown: 163,
|
|
583
|
+
InsightsReminderTeaserConfirmed: 164,
|
|
584
|
+
InsightsReminderTeaserCanceled: 165,
|
|
585
|
+
InsightsReminderTeaserSettingsLinkClicked: 166,
|
|
586
|
+
InsightsReminderTeaserAbortedInSettings: 167,
|
|
587
|
+
GeneratingInsightWithoutDisclaimer: 168,
|
|
588
|
+
AiAssistanceOpenedFromElementsPanelFloatingButton: 169,
|
|
589
|
+
AiAssistanceOpenedFromNetworkPanel: 170,
|
|
590
|
+
AiAssistanceOpenedFromSourcesPanel: 171,
|
|
591
|
+
AiAssistanceOpenedFromSourcesPanelFloatingButton: 172,
|
|
592
|
+
AiAssistanceOpenedFromPerformancePanelCallTree: 173,
|
|
593
|
+
AiAssistanceOpenedFromNetworkPanelFloatingButton: 174,
|
|
594
|
+
AiAssistancePanelOpened: 175,
|
|
595
|
+
AiAssistanceQuerySubmitted: 176,
|
|
596
|
+
AiAssistanceAnswerReceived: 177,
|
|
597
|
+
AiAssistanceDynamicSuggestionClicked: 178,
|
|
598
|
+
AiAssistanceSideEffectConfirmed: 179,
|
|
599
|
+
AiAssistanceSideEffectRejected: 180,
|
|
600
|
+
AiAssistanceError: 181,
|
|
601
|
+
AiCodeCompletionResponseServedFromCache: 184,
|
|
602
|
+
AiCodeCompletionRequestTriggered: 185,
|
|
603
|
+
AiCodeCompletionSuggestionDisplayed: 186,
|
|
604
|
+
AiCodeCompletionSuggestionAccepted: 187,
|
|
605
|
+
AiCodeCompletionError: 188,
|
|
606
|
+
AttributeLinkClicked: 189,
|
|
607
|
+
InsightRequestedViaTeaser: 190,
|
|
608
|
+
InsightTeaserGenerationStarted: 191,
|
|
609
|
+
InsightTeaserGenerationCompleted: 192,
|
|
610
|
+
InsightTeaserGenerationAborted: 193,
|
|
611
|
+
InsightTeaserGenerationErrored: 194,
|
|
612
|
+
AiCodeGenerationSuggestionDisplayed: 195,
|
|
613
|
+
AiCodeGenerationSuggestionAccepted: 196,
|
|
614
|
+
InsightTeaserModelDownloadStarted: 197,
|
|
615
|
+
InsightTeaserModelDownloadCompleted: 198,
|
|
616
|
+
AiCodeGenerationError: 199,
|
|
617
|
+
AiCodeGenerationRequestTriggered: 200,
|
|
618
|
+
AiCodeCompletionRequestTriggeredFromConsole: 201,
|
|
619
|
+
AiCodeCompletionRequestTriggeredFromSources: 202,
|
|
620
|
+
AiCodeCompletionRequestTriggeredFromStyles: 203,
|
|
621
|
+
AiCodeGenerationRequestTriggeredFromConsole: 204,
|
|
622
|
+
AiCodeGenerationRequestTriggeredFromSources: 205,
|
|
623
|
+
AiCodeCompletionFreCompletedFromConsole: 206,
|
|
624
|
+
AiCodeCompletionFreCompletedFromSources: 207,
|
|
625
|
+
AiAssistanceOpenedFromApplicationPanelFloatingButton: 208,
|
|
626
|
+
AiAssistanceOpenedFromApplicationPanel: 209,
|
|
627
|
+
MAX_VALUE: 210,
|
|
628
|
+
},
|
|
629
|
+
PanelCodes: {
|
|
630
|
+
elements: 1,
|
|
631
|
+
resources: 2,
|
|
632
|
+
network: 3,
|
|
633
|
+
sources: 4,
|
|
634
|
+
timeline: 5,
|
|
635
|
+
'heap-profiler': 6,
|
|
636
|
+
console: 8,
|
|
637
|
+
layers: 9,
|
|
638
|
+
'console-view': 10,
|
|
639
|
+
animations: 11,
|
|
640
|
+
'network.config': 12,
|
|
641
|
+
rendering: 13,
|
|
642
|
+
sensors: 14,
|
|
643
|
+
'sources.search': 15,
|
|
644
|
+
security: 16,
|
|
645
|
+
'js-profiler': 17,
|
|
646
|
+
lighthouse: 18,
|
|
647
|
+
coverage: 19,
|
|
648
|
+
'protocol-monitor': 20,
|
|
649
|
+
'remote-devices': 21,
|
|
650
|
+
'web-audio': 22,
|
|
651
|
+
'changes.changes': 23,
|
|
652
|
+
'performance.monitor': 24,
|
|
653
|
+
'release-note': 25,
|
|
654
|
+
'sources.quick': 27,
|
|
655
|
+
'network.blocked-urls': 28,
|
|
656
|
+
'settings-preferences': 29,
|
|
657
|
+
'settings-workspace': 30,
|
|
658
|
+
'settings-experiments': 31,
|
|
659
|
+
'settings-blackbox': 32,
|
|
660
|
+
'settings-devices': 33,
|
|
661
|
+
'settings-throttling-conditions': 34,
|
|
662
|
+
'settings-emulation-locations': 35,
|
|
663
|
+
'settings-shortcuts': 36,
|
|
664
|
+
'issues-pane': 37,
|
|
665
|
+
'settings-keybinds': 38,
|
|
666
|
+
cssoverview: 39,
|
|
667
|
+
'chrome-recorder': 40,
|
|
668
|
+
'trust-tokens': 41,
|
|
669
|
+
'reporting-api': 42,
|
|
670
|
+
'interest-groups': 43,
|
|
671
|
+
'back-forward-cache': 44,
|
|
672
|
+
'service-worker-cache': 45,
|
|
673
|
+
'background-service-background-fetch': 46,
|
|
674
|
+
'background-service-background-sync': 47,
|
|
675
|
+
'background-service-push-messaging': 48,
|
|
676
|
+
'background-service-notifications': 49,
|
|
677
|
+
'background-service-payment-handler': 50,
|
|
678
|
+
'background-service-periodic-background-sync': 51,
|
|
679
|
+
'service-workers': 52,
|
|
680
|
+
'app-manifest': 53,
|
|
681
|
+
storage: 54,
|
|
682
|
+
cookies: 55,
|
|
683
|
+
'frame-details': 56,
|
|
684
|
+
'frame-resource': 57,
|
|
685
|
+
'frame-window': 58,
|
|
686
|
+
'frame-worker': 59,
|
|
687
|
+
'dom-storage': 60,
|
|
688
|
+
'indexed-db': 61,
|
|
689
|
+
'web-sql': 62,
|
|
690
|
+
'performance-insights': 63,
|
|
691
|
+
preloading: 64,
|
|
692
|
+
'bounce-tracking-mitigations': 65,
|
|
693
|
+
'developer-resources': 66,
|
|
694
|
+
'autofill-view': 67,
|
|
695
|
+
freestyler: 68,
|
|
696
|
+
ads: 69,
|
|
697
|
+
MAX_VALUE: 70,
|
|
698
|
+
},
|
|
699
|
+
MediaTypes: {
|
|
700
|
+
Unknown: 0,
|
|
701
|
+
'text/css': 2,
|
|
702
|
+
'text/html': 3,
|
|
703
|
+
'application/xml': 4,
|
|
704
|
+
'application/wasm': 5,
|
|
705
|
+
'application/manifest+json': 6,
|
|
706
|
+
'application/x-aspx': 7,
|
|
707
|
+
'application/jsp': 8,
|
|
708
|
+
'text/x-c++src': 9,
|
|
709
|
+
'text/x-coffeescript': 10,
|
|
710
|
+
'application/vnd.dart': 11,
|
|
711
|
+
'text/typescript': 12,
|
|
712
|
+
'text/typescript-jsx': 13,
|
|
713
|
+
'application/json': 14,
|
|
714
|
+
'text/x-csharp': 15,
|
|
715
|
+
'text/x-java': 16,
|
|
716
|
+
'text/x-less': 17,
|
|
717
|
+
'application/x-httpd-php': 18,
|
|
718
|
+
'text/x-python': 19,
|
|
719
|
+
'text/x-sh': 20,
|
|
720
|
+
'text/x-gss': 21,
|
|
721
|
+
'text/x-sass': 22,
|
|
722
|
+
'text/x-scss': 23,
|
|
723
|
+
'text/markdown': 24,
|
|
724
|
+
'text/x-clojure': 25,
|
|
725
|
+
'text/jsx': 26,
|
|
726
|
+
'text/x-go': 27,
|
|
727
|
+
'text/x-kotlin': 28,
|
|
728
|
+
'text/x-scala': 29,
|
|
729
|
+
'text/x.svelte': 30,
|
|
730
|
+
'text/javascript+plain': 31,
|
|
731
|
+
'text/javascript+minified': 32,
|
|
732
|
+
'text/javascript+sourcemapped': 33,
|
|
733
|
+
'text/x.angular': 34,
|
|
734
|
+
'text/x.vue': 35,
|
|
735
|
+
'text/javascript+snippet': 36,
|
|
736
|
+
'text/javascript+eval': 37,
|
|
737
|
+
MAX_VALUE: 38,
|
|
738
|
+
},
|
|
739
|
+
KeybindSetSettings: {
|
|
740
|
+
devToolsDefault: 0,
|
|
741
|
+
vsCode: 1,
|
|
742
|
+
MAX_VALUE: 2,
|
|
743
|
+
},
|
|
744
|
+
KeyboardShortcutAction: {
|
|
745
|
+
OtherShortcut: 0,
|
|
746
|
+
'quick-open.show-command-menu': 1,
|
|
747
|
+
'console.clear': 2,
|
|
748
|
+
'console.toggle': 3,
|
|
749
|
+
'debugger.step': 4,
|
|
750
|
+
'debugger.step-into': 5,
|
|
751
|
+
'debugger.step-out': 6,
|
|
752
|
+
'debugger.step-over': 7,
|
|
753
|
+
'debugger.toggle-breakpoint': 8,
|
|
754
|
+
'debugger.toggle-breakpoint-enabled': 9,
|
|
755
|
+
'debugger.toggle-pause': 10,
|
|
756
|
+
'elements.edit-as-html': 11,
|
|
757
|
+
'elements.hide-element': 12,
|
|
758
|
+
'elements.redo': 13,
|
|
759
|
+
'elements.toggle-element-search': 14,
|
|
760
|
+
'elements.undo': 15,
|
|
761
|
+
'main.search-in-panel.find': 16,
|
|
762
|
+
'main.toggle-drawer': 17,
|
|
763
|
+
'network.hide-request-details': 18,
|
|
764
|
+
'network.search': 19,
|
|
765
|
+
'network.toggle-recording': 20,
|
|
766
|
+
'quick-open.show': 21,
|
|
767
|
+
'settings.show': 22,
|
|
768
|
+
'sources.search': 23,
|
|
769
|
+
'background-service.toggle-recording': 24,
|
|
770
|
+
'components.collect-garbage': 25,
|
|
771
|
+
'console.clear.history': 26,
|
|
772
|
+
'console.create-pin': 27,
|
|
773
|
+
'coverage.start-with-reload': 28,
|
|
774
|
+
'coverage.toggle-recording': 29,
|
|
775
|
+
'debugger.breakpoint-input-window': 30,
|
|
776
|
+
'debugger.evaluate-selection': 31,
|
|
777
|
+
'debugger.next-call-frame': 32,
|
|
778
|
+
'debugger.previous-call-frame': 33,
|
|
779
|
+
'debugger.run-snippet': 34,
|
|
780
|
+
'debugger.toggle-breakpoints-active': 35,
|
|
781
|
+
'elements.capture-area-screenshot': 36,
|
|
782
|
+
'emulation.capture-full-height-screenshot': 37,
|
|
783
|
+
'emulation.capture-node-screenshot': 38,
|
|
784
|
+
'emulation.capture-screenshot': 39,
|
|
785
|
+
'emulation.show-sensors': 40,
|
|
786
|
+
'emulation.toggle-device-mode': 41,
|
|
787
|
+
'help.release-notes': 42,
|
|
788
|
+
'help.report-issue': 43,
|
|
789
|
+
'input.start-replaying': 44,
|
|
790
|
+
'input.toggle-pause': 45,
|
|
791
|
+
'input.toggle-recording': 46,
|
|
792
|
+
'inspector-main.focus-debuggee': 47,
|
|
793
|
+
'inspector-main.hard-reload': 48,
|
|
794
|
+
'inspector-main.reload': 49,
|
|
795
|
+
'main.debug-reload': 52,
|
|
796
|
+
'main.next-tab': 53,
|
|
797
|
+
'main.previous-tab': 54,
|
|
798
|
+
'main.search-in-panel.cancel': 55,
|
|
799
|
+
'main.search-in-panel.find-next': 56,
|
|
800
|
+
'main.search-in-panel.find-previous': 57,
|
|
801
|
+
'main.toggle-dock': 58,
|
|
802
|
+
'main.zoom-in': 59,
|
|
803
|
+
'main.zoom-out': 60,
|
|
804
|
+
'main.zoom-reset': 61,
|
|
805
|
+
'network-conditions.network-low-end-mobile': 62,
|
|
806
|
+
'network-conditions.network-mid-tier-mobile': 63,
|
|
807
|
+
'network-conditions.network-offline': 64,
|
|
808
|
+
'network-conditions.network-online': 65,
|
|
809
|
+
'profiler.heap-toggle-recording': 66,
|
|
810
|
+
'profiler.js-toggle-recording': 67,
|
|
811
|
+
'resources.clear': 68,
|
|
812
|
+
'settings.documentation': 69,
|
|
813
|
+
'settings.shortcuts': 70,
|
|
814
|
+
'sources.add-folder-to-workspace': 71,
|
|
815
|
+
'sources.add-to-watch': 72,
|
|
816
|
+
'sources.close-all': 73,
|
|
817
|
+
'sources.close-editor-tab': 74,
|
|
818
|
+
'sources.create-snippet': 75,
|
|
819
|
+
'sources.go-to-line': 76,
|
|
820
|
+
'sources.go-to-member': 77,
|
|
821
|
+
'sources.jump-to-next-location': 78,
|
|
822
|
+
'sources.jump-to-previous-location': 79,
|
|
823
|
+
'sources.rename': 80,
|
|
824
|
+
'sources.save': 81,
|
|
825
|
+
'sources.save-all': 82,
|
|
826
|
+
'sources.switch-file': 83,
|
|
827
|
+
'timeline.jump-to-next-frame': 84,
|
|
828
|
+
'timeline.jump-to-previous-frame': 85,
|
|
829
|
+
'timeline.load-from-file': 86,
|
|
830
|
+
'timeline.next-recording': 87,
|
|
831
|
+
'timeline.previous-recording': 88,
|
|
832
|
+
'timeline.record-reload': 89,
|
|
833
|
+
'timeline.save-to-file': 90,
|
|
834
|
+
'timeline.show-history': 91,
|
|
835
|
+
'timeline.toggle-recording': 92,
|
|
836
|
+
'sources.increment-css': 93,
|
|
837
|
+
'sources.increment-css-by-ten': 94,
|
|
838
|
+
'sources.decrement-css': 95,
|
|
839
|
+
'sources.decrement-css-by-ten': 96,
|
|
840
|
+
'layers.reset-view': 97,
|
|
841
|
+
'layers.pan-mode': 98,
|
|
842
|
+
'layers.rotate-mode': 99,
|
|
843
|
+
'layers.zoom-in': 100,
|
|
844
|
+
'layers.zoom-out': 101,
|
|
845
|
+
'layers.up': 102,
|
|
846
|
+
'layers.down': 103,
|
|
847
|
+
'layers.left': 104,
|
|
848
|
+
'layers.right': 105,
|
|
849
|
+
'help.report-translation-issue': 106,
|
|
850
|
+
'rendering.toggle-prefers-color-scheme': 107,
|
|
851
|
+
'chrome-recorder.start-recording': 108,
|
|
852
|
+
'chrome-recorder.replay-recording': 109,
|
|
853
|
+
'chrome-recorder.toggle-code-view': 110,
|
|
854
|
+
'chrome-recorder.copy-recording-or-step': 111,
|
|
855
|
+
'elements.new-style-rule': 114,
|
|
856
|
+
'elements.refresh-event-listeners': 115,
|
|
857
|
+
'coverage.clear': 116,
|
|
858
|
+
'coverage.export': 117,
|
|
859
|
+
'timeline.dim-third-parties': 118,
|
|
860
|
+
'main.toggle-drawer-orientation': 119,
|
|
861
|
+
MAX_VALUE: 120,
|
|
862
|
+
},
|
|
863
|
+
IssueOpener: {
|
|
864
|
+
CONSOLE_INFO_BAR: 0,
|
|
865
|
+
LEARN_MORE_LINK_COEP: 1,
|
|
866
|
+
STATUS_BAR_ISSUES_COUNTER: 2,
|
|
867
|
+
HAMBURGER_MENU: 3,
|
|
868
|
+
ADORNER: 4,
|
|
869
|
+
COMMAND_MENU: 5,
|
|
870
|
+
MORE_TOOLS_MENU: 6,
|
|
871
|
+
MAX_VALUE: 7,
|
|
872
|
+
},
|
|
873
|
+
DevtoolsExperiments: {
|
|
874
|
+
'protocol-monitor': 13,
|
|
875
|
+
'instrumentation-breakpoints': 61,
|
|
876
|
+
'durable-messages': 110,
|
|
877
|
+
'jpeg-xl': 111,
|
|
878
|
+
'plus-button': 112,
|
|
879
|
+
MAX_VALUE: 113,
|
|
880
|
+
},
|
|
881
|
+
IssueExpanded: {
|
|
882
|
+
CrossOriginEmbedderPolicy: 0,
|
|
883
|
+
MixedContent: 1,
|
|
884
|
+
SameSiteCookie: 2,
|
|
885
|
+
HeavyAd: 3,
|
|
886
|
+
ContentSecurityPolicy: 4,
|
|
887
|
+
Other: 5,
|
|
888
|
+
Generic: 6,
|
|
889
|
+
ThirdPartyPhaseoutCookie: 7,
|
|
890
|
+
GenericCookie: 8,
|
|
891
|
+
MAX_VALUE: 9,
|
|
892
|
+
},
|
|
893
|
+
IssueResourceOpened: {
|
|
894
|
+
CrossOriginEmbedderPolicyRequest: 0,
|
|
895
|
+
CrossOriginEmbedderPolicyElement: 1,
|
|
896
|
+
MixedContentRequest: 2,
|
|
897
|
+
SameSiteCookieCookie: 3,
|
|
898
|
+
SameSiteCookieRequest: 4,
|
|
899
|
+
HeavyAdElement: 5,
|
|
900
|
+
ContentSecurityPolicyDirective: 6,
|
|
901
|
+
ContentSecurityPolicyElement: 7,
|
|
902
|
+
MAX_VALUE: 13,
|
|
903
|
+
},
|
|
904
|
+
IssueCreated: {
|
|
905
|
+
MixedContentIssue: 0,
|
|
906
|
+
'ContentSecurityPolicyIssue::kInlineViolation': 1,
|
|
907
|
+
'ContentSecurityPolicyIssue::kEvalViolation': 2,
|
|
908
|
+
'ContentSecurityPolicyIssue::kURLViolation': 3,
|
|
909
|
+
'ContentSecurityPolicyIssue::kTrustedTypesSinkViolation': 4,
|
|
910
|
+
'ContentSecurityPolicyIssue::kTrustedTypesPolicyViolation': 5,
|
|
911
|
+
'HeavyAdIssue::NetworkTotalLimit': 6,
|
|
912
|
+
'HeavyAdIssue::CpuTotalLimit': 7,
|
|
913
|
+
'HeavyAdIssue::CpuPeakLimit': 8,
|
|
914
|
+
'CrossOriginEmbedderPolicyIssue::CoepFrameResourceNeedsCoepHeader': 9,
|
|
915
|
+
'CrossOriginEmbedderPolicyIssue::CoopSandboxedIFrameCannotNavigateToCoopPage': 10,
|
|
916
|
+
'CrossOriginEmbedderPolicyIssue::CorpNotSameOrigin': 11,
|
|
917
|
+
'CrossOriginEmbedderPolicyIssue::CorpNotSameOriginAfterDefaultedToSameOriginByCoep': 12,
|
|
918
|
+
'CrossOriginEmbedderPolicyIssue::CorpNotSameSite': 13,
|
|
919
|
+
'CookieIssue::ExcludeSameSiteNoneInsecure::ReadCookie': 14,
|
|
920
|
+
'CookieIssue::ExcludeSameSiteNoneInsecure::SetCookie': 15,
|
|
921
|
+
'CookieIssue::WarnSameSiteNoneInsecure::ReadCookie': 16,
|
|
922
|
+
'CookieIssue::WarnSameSiteNoneInsecure::SetCookie': 17,
|
|
923
|
+
'CookieIssue::WarnSameSiteStrictLaxDowngradeStrict::Secure': 18,
|
|
924
|
+
'CookieIssue::WarnSameSiteStrictLaxDowngradeStrict::Insecure': 19,
|
|
925
|
+
'CookieIssue::WarnCrossDowngrade::ReadCookie::Secure': 20,
|
|
926
|
+
'CookieIssue::WarnCrossDowngrade::ReadCookie::Insecure': 21,
|
|
927
|
+
'CookieIssue::WarnCrossDowngrade::SetCookie::Secure': 22,
|
|
928
|
+
'CookieIssue::WarnCrossDowngrade::SetCookie::Insecure': 23,
|
|
929
|
+
'CookieIssue::ExcludeNavigationContextDowngrade::Secure': 24,
|
|
930
|
+
'CookieIssue::ExcludeNavigationContextDowngrade::Insecure': 25,
|
|
931
|
+
'CookieIssue::ExcludeContextDowngrade::ReadCookie::Secure': 26,
|
|
932
|
+
'CookieIssue::ExcludeContextDowngrade::ReadCookie::Insecure': 27,
|
|
933
|
+
'CookieIssue::ExcludeContextDowngrade::SetCookie::Secure': 28,
|
|
934
|
+
'CookieIssue::ExcludeContextDowngrade::SetCookie::Insecure': 29,
|
|
935
|
+
'CookieIssue::ExcludeSameSiteUnspecifiedTreatedAsLax::ReadCookie': 30,
|
|
936
|
+
'CookieIssue::ExcludeSameSiteUnspecifiedTreatedAsLax::SetCookie': 31,
|
|
937
|
+
'CookieIssue::WarnSameSiteUnspecifiedLaxAllowUnsafe::ReadCookie': 32,
|
|
938
|
+
'CookieIssue::WarnSameSiteUnspecifiedLaxAllowUnsafe::SetCookie': 33,
|
|
939
|
+
'CookieIssue::WarnSameSiteUnspecifiedCrossSiteContext::ReadCookie': 34,
|
|
940
|
+
'CookieIssue::WarnSameSiteUnspecifiedCrossSiteContext::SetCookie': 35,
|
|
941
|
+
'SharedArrayBufferIssue::TransferIssue': 36,
|
|
942
|
+
'SharedArrayBufferIssue::CreationIssue': 37,
|
|
943
|
+
'CorsIssue::InsecureLocalNetwork': 42,
|
|
944
|
+
'CorsIssue::InvalidHeaders': 44,
|
|
945
|
+
'CorsIssue::WildcardOriginWithCredentials': 45,
|
|
946
|
+
'CorsIssue::PreflightResponseInvalid': 46,
|
|
947
|
+
'CorsIssue::OriginMismatch': 47,
|
|
948
|
+
'CorsIssue::AllowCredentialsRequired': 48,
|
|
949
|
+
'CorsIssue::MethodDisallowedByPreflightResponse': 49,
|
|
950
|
+
'CorsIssue::HeaderDisallowedByPreflightResponse': 50,
|
|
951
|
+
'CorsIssue::RedirectContainsCredentials': 51,
|
|
952
|
+
'CorsIssue::DisallowedByMode': 52,
|
|
953
|
+
'CorsIssue::CorsDisabledScheme': 53,
|
|
954
|
+
'CorsIssue::PreflightMissingAllowExternal': 54,
|
|
955
|
+
'CorsIssue::PreflightInvalidAllowExternal': 55,
|
|
956
|
+
'CorsIssue::NoCorsRedirectModeNotFollow': 57,
|
|
957
|
+
'QuirksModeIssue::QuirksMode': 58,
|
|
958
|
+
'QuirksModeIssue::LimitedQuirksMode': 59,
|
|
959
|
+
DeprecationIssue: 60,
|
|
960
|
+
'ClientHintIssue::MetaTagAllowListInvalidOrigin': 61,
|
|
961
|
+
'ClientHintIssue::MetaTagModifiedHTML': 62,
|
|
962
|
+
'GenericIssue::CrossOriginPortalPostMessageError': 64,
|
|
963
|
+
'GenericIssue::FormLabelForNameError': 65,
|
|
964
|
+
'GenericIssue::FormDuplicateIdForInputError': 66,
|
|
965
|
+
'GenericIssue::FormInputWithNoLabelError': 67,
|
|
966
|
+
'GenericIssue::FormAutocompleteAttributeEmptyError': 68,
|
|
967
|
+
'GenericIssue::FormEmptyIdAndNameAttributesForInputError': 69,
|
|
968
|
+
'GenericIssue::FormAriaLabelledByToNonExistingIdError': 70,
|
|
969
|
+
'GenericIssue::FormInputAssignedAutocompleteValueToIdOrNameAttributeError': 71,
|
|
970
|
+
'GenericIssue::FormLabelHasNeitherForNorNestedInputError': 72,
|
|
971
|
+
'GenericIssue::FormLabelForMatchesNonExistingIdError': 73,
|
|
972
|
+
'GenericIssue::FormHasPasswordFieldWithoutUsernameFieldError': 74,
|
|
973
|
+
'GenericIssue::FormInputHasWrongButWellIntendedAutocompleteValueError': 75,
|
|
974
|
+
'StylesheetLoadingIssue::LateImportRule': 76,
|
|
975
|
+
'StylesheetLoadingIssue::RequestFailed': 77,
|
|
976
|
+
'CookieIssue::WarnThirdPartyPhaseout::ReadCookie': 82,
|
|
977
|
+
'CookieIssue::WarnThirdPartyPhaseout::SetCookie': 83,
|
|
978
|
+
'CookieIssue::ExcludeThirdPartyPhaseout::ReadCookie': 84,
|
|
979
|
+
'CookieIssue::ExcludeThirdPartyPhaseout::SetCookie': 85,
|
|
980
|
+
'ElementAccessibilityIssue::DisallowedSelectChild': 86,
|
|
981
|
+
'ElementAccessibilityIssue::DisallowedOptGroupChild': 87,
|
|
982
|
+
'ElementAccessibilityIssue::NonPhrasingContentOptionChild': 88,
|
|
983
|
+
'ElementAccessibilityIssue::InteractiveContentOptionChild': 89,
|
|
984
|
+
'ElementAccessibilityIssue::InteractiveContentLegendChild': 90,
|
|
985
|
+
'SRIMessageSignatureIssue::MissingSignatureHeader': 91,
|
|
986
|
+
'SRIMessageSignatureIssue::MissingSignatureInputHeader': 92,
|
|
987
|
+
'SRIMessageSignatureIssue::InvalidSignatureHeader': 93,
|
|
988
|
+
'SRIMessageSignatureIssue::InvalidSignatureInputHeader': 94,
|
|
989
|
+
'SRIMessageSignatureIssue::SignatureHeaderValueIsNotByteSequence': 95,
|
|
990
|
+
'SRIMessageSignatureIssue::SignatureHeaderValueIsParameterized': 96,
|
|
991
|
+
'SRIMessageSignatureIssue::SignatureHeaderValueIsIncorrectLength': 97,
|
|
992
|
+
'SRIMessageSignatureIssue::SignatureInputHeaderMissingLabel': 98,
|
|
993
|
+
'SRIMessageSignatureIssue::SignatureInputHeaderValueNotInnerList': 99,
|
|
994
|
+
'SRIMessageSignatureIssue::SignatureInputHeaderValueMissingComponents': 100,
|
|
995
|
+
'SRIMessageSignatureIssue::SignatureInputHeaderInvalidComponentType': 101,
|
|
996
|
+
'SRIMessageSignatureIssue::SignatureInputHeaderInvalidComponentName': 102,
|
|
997
|
+
'SRIMessageSignatureIssue::SignatureInputHeaderInvalidHeaderComponentParameter': 103,
|
|
998
|
+
'SRIMessageSignatureIssue::SignatureInputHeaderInvalidDerivedComponentParameter': 104,
|
|
999
|
+
'SRIMessageSignatureIssue::SignatureInputHeaderKeyIdLength': 105,
|
|
1000
|
+
'SRIMessageSignatureIssue::SignatureInputHeaderInvalidParameter': 106,
|
|
1001
|
+
'SRIMessageSignatureIssue::SignatureInputHeaderMissingRequiredParameters': 107,
|
|
1002
|
+
'SRIMessageSignatureIssue::ValidationFailedSignatureExpired': 108,
|
|
1003
|
+
'SRIMessageSignatureIssue::ValidationFailedInvalidLength': 109,
|
|
1004
|
+
'SRIMessageSignatureIssue::ValidationFailedSignatureMismatch': 110,
|
|
1005
|
+
'CorsIssue::LocalNetworkAccessPermissionDenied': 111,
|
|
1006
|
+
'SRIMessageSignatureIssue::ValidationFailedIntegrityMismatch': 112,
|
|
1007
|
+
'ElementAccessibilityIssue::InteractiveContentSummaryDescendant': 113,
|
|
1008
|
+
'CorsIssue::InvalidLocalNetworkAccess': 114,
|
|
1009
|
+
MAX_VALUE: 115,
|
|
1010
|
+
},
|
|
1011
|
+
DeveloperResourceLoaded: {
|
|
1012
|
+
LOAD_THROUGH_PAGE_VIA_TARGET: 0,
|
|
1013
|
+
LOAD_THROUGH_PAGE_FAILURE: 2,
|
|
1014
|
+
LOAD_THROUGH_PAGE_FALLBACK: 3,
|
|
1015
|
+
FALLBACK_AFTER_FAILURE: 4,
|
|
1016
|
+
FALLBACK_PER_OVERRIDE: 5,
|
|
1017
|
+
FALLBACK_PER_PROTOCOL: 6,
|
|
1018
|
+
FALLBACK_FAILURE: 7,
|
|
1019
|
+
MAX_VALUE: 8,
|
|
1020
|
+
},
|
|
1021
|
+
DeveloperResourceScheme: {
|
|
1022
|
+
OTHER: 0,
|
|
1023
|
+
UKNOWN: 1,
|
|
1024
|
+
HTTP: 2,
|
|
1025
|
+
HTTPS: 3,
|
|
1026
|
+
HTTP_LOCALHOST: 4,
|
|
1027
|
+
HTTPS_LOCALHOST: 5,
|
|
1028
|
+
DATA: 6,
|
|
1029
|
+
FILE: 7,
|
|
1030
|
+
BLOB: 8,
|
|
1031
|
+
MAX_VALUE: 9,
|
|
1032
|
+
},
|
|
1033
|
+
Language: {
|
|
1034
|
+
af: 1,
|
|
1035
|
+
am: 2,
|
|
1036
|
+
ar: 3,
|
|
1037
|
+
as: 4,
|
|
1038
|
+
az: 5,
|
|
1039
|
+
be: 6,
|
|
1040
|
+
bg: 7,
|
|
1041
|
+
bn: 8,
|
|
1042
|
+
bs: 9,
|
|
1043
|
+
ca: 10,
|
|
1044
|
+
cs: 11,
|
|
1045
|
+
cy: 12,
|
|
1046
|
+
da: 13,
|
|
1047
|
+
de: 14,
|
|
1048
|
+
el: 15,
|
|
1049
|
+
'en-GB': 16,
|
|
1050
|
+
'en-US': 17,
|
|
1051
|
+
'es-419': 18,
|
|
1052
|
+
es: 19,
|
|
1053
|
+
et: 20,
|
|
1054
|
+
eu: 21,
|
|
1055
|
+
fa: 22,
|
|
1056
|
+
fi: 23,
|
|
1057
|
+
fil: 24,
|
|
1058
|
+
'fr-CA': 25,
|
|
1059
|
+
fr: 26,
|
|
1060
|
+
gl: 27,
|
|
1061
|
+
gu: 28,
|
|
1062
|
+
he: 29,
|
|
1063
|
+
hi: 30,
|
|
1064
|
+
hr: 31,
|
|
1065
|
+
hu: 32,
|
|
1066
|
+
hy: 33,
|
|
1067
|
+
id: 34,
|
|
1068
|
+
is: 35,
|
|
1069
|
+
it: 36,
|
|
1070
|
+
ja: 37,
|
|
1071
|
+
ka: 38,
|
|
1072
|
+
kk: 39,
|
|
1073
|
+
km: 40,
|
|
1074
|
+
kn: 41,
|
|
1075
|
+
ko: 42,
|
|
1076
|
+
ky: 43,
|
|
1077
|
+
lo: 44,
|
|
1078
|
+
lt: 45,
|
|
1079
|
+
lv: 46,
|
|
1080
|
+
mk: 47,
|
|
1081
|
+
ml: 48,
|
|
1082
|
+
mn: 49,
|
|
1083
|
+
mr: 50,
|
|
1084
|
+
ms: 51,
|
|
1085
|
+
my: 52,
|
|
1086
|
+
ne: 53,
|
|
1087
|
+
nl: 54,
|
|
1088
|
+
no: 55,
|
|
1089
|
+
or: 56,
|
|
1090
|
+
pa: 57,
|
|
1091
|
+
pl: 58,
|
|
1092
|
+
'pt-PT': 59,
|
|
1093
|
+
pt: 60,
|
|
1094
|
+
ro: 61,
|
|
1095
|
+
ru: 62,
|
|
1096
|
+
si: 63,
|
|
1097
|
+
sk: 64,
|
|
1098
|
+
sl: 65,
|
|
1099
|
+
sq: 66,
|
|
1100
|
+
'sr-Latn': 67,
|
|
1101
|
+
sr: 68,
|
|
1102
|
+
sv: 69,
|
|
1103
|
+
sw: 70,
|
|
1104
|
+
ta: 71,
|
|
1105
|
+
te: 72,
|
|
1106
|
+
th: 73,
|
|
1107
|
+
tr: 74,
|
|
1108
|
+
uk: 75,
|
|
1109
|
+
ur: 76,
|
|
1110
|
+
uz: 77,
|
|
1111
|
+
vi: 78,
|
|
1112
|
+
zh: 79,
|
|
1113
|
+
'zh-HK': 80,
|
|
1114
|
+
'zh-TW': 81,
|
|
1115
|
+
zu: 82,
|
|
1116
|
+
MAX_VALUE: 83,
|
|
1117
|
+
},
|
|
1118
|
+
SyncSetting: {
|
|
1119
|
+
CHROME_SYNC_DISABLED: 1,
|
|
1120
|
+
CHROME_SYNC_SETTINGS_DISABLED: 2,
|
|
1121
|
+
DEVTOOLS_SYNC_SETTING_DISABLED: 3,
|
|
1122
|
+
DEVTOOLS_SYNC_SETTING_ENABLED: 4,
|
|
1123
|
+
MAX_VALUE: 5,
|
|
1124
|
+
},
|
|
1125
|
+
RecordingToggled: {
|
|
1126
|
+
RECORDING_STARTED: 1,
|
|
1127
|
+
RECORDING_FINISHED: 2,
|
|
1128
|
+
MAX_VALUE: 3,
|
|
1129
|
+
},
|
|
1130
|
+
RecordingAssertion: {
|
|
1131
|
+
ASSERTION_ADDED: 1,
|
|
1132
|
+
PROPERTY_ASSERTION_EDITED: 2,
|
|
1133
|
+
ATTRIBUTE_ASSERTION_EDITED: 3,
|
|
1134
|
+
MAX_VALUE: 4,
|
|
1135
|
+
},
|
|
1136
|
+
RecordingReplayFinished: {
|
|
1137
|
+
SUCCESS: 1,
|
|
1138
|
+
TIMEOUT_ERROR_SELECTORS: 2,
|
|
1139
|
+
TIMEOUT_ERROR_TARGET: 3,
|
|
1140
|
+
OTHER_ERROR: 4,
|
|
1141
|
+
MAX_VALUE: 5,
|
|
1142
|
+
},
|
|
1143
|
+
RecordingReplaySpeed: {
|
|
1144
|
+
NORMAL: 1,
|
|
1145
|
+
SLOW: 2,
|
|
1146
|
+
VERY_SLOW: 3,
|
|
1147
|
+
EXTREMELY_SLOW: 4,
|
|
1148
|
+
MAX_VALUE: 5,
|
|
1149
|
+
},
|
|
1150
|
+
RecordingReplayStarted: {
|
|
1151
|
+
REPLAY_ONLY: 1,
|
|
1152
|
+
REPLAY_WITH_PERFORMANCE_TRACING: 2,
|
|
1153
|
+
REPLAY_VIA_EXTENSION: 3,
|
|
1154
|
+
MAX_VALUE: 4,
|
|
1155
|
+
},
|
|
1156
|
+
RecordingEdited: {
|
|
1157
|
+
SELECTOR_PICKER_USED: 1,
|
|
1158
|
+
STEP_ADDED: 2,
|
|
1159
|
+
STEP_REMOVED: 3,
|
|
1160
|
+
SELECTOR_ADDED: 4,
|
|
1161
|
+
SELECTOR_REMOVED: 5,
|
|
1162
|
+
SELECTOR_PART_ADDED: 6,
|
|
1163
|
+
SELECTOR_PART_EDITED: 7,
|
|
1164
|
+
SELECTOR_PART_REMOVED: 8,
|
|
1165
|
+
TYPE_CHANGED: 9,
|
|
1166
|
+
OTHER_EDITING: 10,
|
|
1167
|
+
MAX_VALUE: 11,
|
|
1168
|
+
},
|
|
1169
|
+
RecordingExported: {
|
|
1170
|
+
TO_PUPPETEER: 1,
|
|
1171
|
+
TO_JSON: 2,
|
|
1172
|
+
TO_PUPPETEER_REPLAY: 3,
|
|
1173
|
+
TO_EXTENSION: 4,
|
|
1174
|
+
TO_LIGHTHOUSE: 5,
|
|
1175
|
+
MAX_VALUE: 6,
|
|
1176
|
+
},
|
|
1177
|
+
RecordingCodeToggled: {
|
|
1178
|
+
CODE_SHOWN: 1,
|
|
1179
|
+
CODE_HIDDEN: 2,
|
|
1180
|
+
MAX_VALUE: 3,
|
|
1181
|
+
},
|
|
1182
|
+
RecordingCopiedToClipboard: {
|
|
1183
|
+
COPIED_RECORDING_WITH_PUPPETEER: 1,
|
|
1184
|
+
COPIED_RECORDING_WITH_JSON: 2,
|
|
1185
|
+
COPIED_RECORDING_WITH_REPLAY: 3,
|
|
1186
|
+
COPIED_RECORDING_WITH_EXTENSION: 4,
|
|
1187
|
+
COPIED_STEP_WITH_PUPPETEER: 5,
|
|
1188
|
+
COPIED_STEP_WITH_JSON: 6,
|
|
1189
|
+
COPIED_STEP_WITH_REPLAY: 7,
|
|
1190
|
+
COPIED_STEP_WITH_EXTENSION: 8,
|
|
1191
|
+
MAX_VALUE: 9,
|
|
1192
|
+
},
|
|
1193
|
+
ManifestSectionCodes: {
|
|
1194
|
+
OtherSection: 0,
|
|
1195
|
+
Identity: 1,
|
|
1196
|
+
Presentation: 2,
|
|
1197
|
+
'Protocol Handlers': 3,
|
|
1198
|
+
Icons: 4,
|
|
1199
|
+
'Window Controls Overlay': 5,
|
|
1200
|
+
MAX_VALUE: 6,
|
|
1201
|
+
},
|
|
1202
|
+
LighthouseModeRun: {
|
|
1203
|
+
NAVIGATION: 0,
|
|
1204
|
+
TIMESPAN: 1,
|
|
1205
|
+
SNAPSHOT: 2,
|
|
1206
|
+
LEGACY_NAVIGATION: 3,
|
|
1207
|
+
MAX_VALUE: 4,
|
|
1208
|
+
},
|
|
1209
|
+
LighthouseCategoryUsed: {
|
|
1210
|
+
PERFORMANCE: 0,
|
|
1211
|
+
ACCESSIBILITY: 1,
|
|
1212
|
+
BEST_PRACTICES: 2,
|
|
1213
|
+
SEO: 3,
|
|
1214
|
+
PWA: 4,
|
|
1215
|
+
PUB_ADS: 5,
|
|
1216
|
+
AGENTIC_BROWSING: 6,
|
|
1217
|
+
MAX_VALUE: 7,
|
|
1218
|
+
},
|
|
1219
|
+
SwatchType: {
|
|
1220
|
+
VAR_LINK: 0,
|
|
1221
|
+
ANIMATION_NAME_LINK: 1,
|
|
1222
|
+
COLOR: 2,
|
|
1223
|
+
ANIMATION_TIMING: 3,
|
|
1224
|
+
SHADOW: 4,
|
|
1225
|
+
GRID: 5,
|
|
1226
|
+
FLEX: 6,
|
|
1227
|
+
ANGLE: 7,
|
|
1228
|
+
LENGTH: 8,
|
|
1229
|
+
POSITION_TRY_LINK: 10,
|
|
1230
|
+
ATTR_LINK: 11,
|
|
1231
|
+
GRID_LANES: 12,
|
|
1232
|
+
MAX_VALUE: 13,
|
|
1233
|
+
},
|
|
1234
|
+
BadgeType: {
|
|
1235
|
+
GRID: 0,
|
|
1236
|
+
SUBGRID: 1,
|
|
1237
|
+
FLEX: 2,
|
|
1238
|
+
AD: 3,
|
|
1239
|
+
SCROLL_SNAP: 4,
|
|
1240
|
+
CONTAINER: 5,
|
|
1241
|
+
SLOT: 6,
|
|
1242
|
+
TOP_LAYER: 7,
|
|
1243
|
+
REVEAL: 8,
|
|
1244
|
+
MAX_VALUE: 9,
|
|
1245
|
+
},
|
|
1246
|
+
AnimationsPlaybackRate: {
|
|
1247
|
+
PERCENT_100: 0,
|
|
1248
|
+
PERCENT_25: 1,
|
|
1249
|
+
PERCENT_10: 2,
|
|
1250
|
+
OTHER: 3,
|
|
1251
|
+
MAX_VALUE: 4,
|
|
1252
|
+
},
|
|
1253
|
+
TimelineNavigationSetting: {
|
|
1254
|
+
CLASSIC_AT_SESSION_FIRST_TRACE: 0,
|
|
1255
|
+
MODERN_AT_SESSION_FIRST_TRACE: 1,
|
|
1256
|
+
SWITCHED_TO_CLASSIC: 2,
|
|
1257
|
+
SWITCHED_TO_MODERN: 3,
|
|
1258
|
+
MAX_VALUE: 4,
|
|
1259
|
+
},
|
|
1260
|
+
BuiltInAiAvailability: {
|
|
1261
|
+
UNAVAILABLE_HAS_GPU: 0,
|
|
1262
|
+
DOWNLOADABLE_HAS_GPU: 1,
|
|
1263
|
+
DOWNLOADING_HAS_GPU: 2,
|
|
1264
|
+
AVAILABLE_HAS_GPU: 3,
|
|
1265
|
+
DISABLED_HAS_GPU: 4,
|
|
1266
|
+
UNAVAILABLE_NO_GPU: 5,
|
|
1267
|
+
DOWNLOADABLE_NO_GPU: 6,
|
|
1268
|
+
DOWNLOADING_NO_GPU: 7,
|
|
1269
|
+
AVAILABLE_NO_GPU: 8,
|
|
1270
|
+
DISABLED_NO_GPU: 9,
|
|
1271
|
+
MAX_VALUE: 10,
|
|
1272
|
+
},
|
|
1273
|
+
ResendRequestType: {
|
|
1274
|
+
XHR: 0,
|
|
1275
|
+
FETCH: 1,
|
|
1276
|
+
SCRIPT: 2,
|
|
1277
|
+
STYLESHEET: 3,
|
|
1278
|
+
IMAGE: 4,
|
|
1279
|
+
MEDIA: 5,
|
|
1280
|
+
FONT: 6,
|
|
1281
|
+
WASM: 7,
|
|
1282
|
+
MANIFEST: 8,
|
|
1283
|
+
TEXT_TRACK: 9,
|
|
1284
|
+
SOURCE_MAP_SCRIPT: 10,
|
|
1285
|
+
SOURCE_MAP_STYLE_SHEET: 11,
|
|
1286
|
+
DOCUMENT: 12,
|
|
1287
|
+
PREFETCH: 13,
|
|
1288
|
+
PING: 14,
|
|
1289
|
+
OTHER: 15,
|
|
1290
|
+
MAX_VALUE: 16,
|
|
1291
|
+
},
|
|
1292
|
+
};
|
|
1293
|
+
// LINT.ThenChange(/front_end/core/host/UserMetricsEnums.d.ts)
|
|
1294
|
+
|
|
409
1295
|
// InspectorFrontendHostImpl --------------------------------------------------
|
|
410
1296
|
|
|
411
1297
|
/**
|