Skip to content

Commit

Permalink
Build 24-03-2024 (#27)
Browse files Browse the repository at this point in the history
Latest devtools frontend commit:
[7490903](https://chromium.googlesource.com/devtools/devtools-frontend.git/+/74909033f25b197ce4b1054cadf7ea841c65a664)

Co-authored-by: GitHub <noreply@github.com>
  • Loading branch information
github-actions[bot] and web-flow authored Mar 24, 2024
1 parent 7ff723d commit b732351
Show file tree
Hide file tree
Showing 404 changed files with 3,283 additions and 2,081 deletions.
1 change: 1 addition & 0 deletions public/core/common/Revealer.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ export interface RevealerRegistration<T> {
destination?: RevealerDestination;
}
export declare const RevealerDestination: {
DEVELOPER_RESOURCES_PANEL: () => Platform.UIString.LocalizedString;
ELEMENTS_PANEL: () => Platform.UIString.LocalizedString;
STYLES_SIDEBAR: () => Platform.UIString.LocalizedString;
CHANGES_DRAWER: () => Platform.UIString.LocalizedString;
Expand Down
5 changes: 5 additions & 0 deletions public/core/common/Revealer.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion public/core/common/Revealer.js.map

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions public/core/common/Settings.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ export declare class Settings {
static normalizeSettingName(name: string): string;
moduleSetting<T = any>(settingName: string): Setting<T>;
settingForTest(settingName: string): Setting<unknown>;
/**
* Get setting via key, and create a new setting if the requested setting does not exist.
*/
createSetting<T>(key: string, defaultValue: T, storageType?: SettingStorageType): Setting<T>;
createLocalSetting<T>(key: string, defaultValue: T): Setting<T>;
createRegExpSetting(key: string, defaultValue: string, regexFlags?: string, storageType?: SettingStorageType): RegExpSetting;
Expand Down
6 changes: 5 additions & 1 deletion public/core/common/Settings.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion public/core/common/Settings.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/core/common/StringOutputStream.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export interface OutputStream {
write(data: string): Promise<void>;
write(data: string, endOfFile?: boolean): Promise<void>;
close(): Promise<void>;
}
export declare class StringOutputStream implements OutputStream {
Expand Down
2 changes: 1 addition & 1 deletion public/core/common/StringOutputStream.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 1 addition & 4 deletions public/core/host/InspectorFrontendHostAPI.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export interface ResizeEvent {
}
export interface ClickEvent {
veid: number;
mouseButton: number;
mouseButton?: number;
context?: number;
doubleClick: boolean;
}
Expand Down Expand Up @@ -301,7 +301,6 @@ export interface SyncInformation {
*/
export declare const enum EnumeratedHistogram {
ActionTaken = "DevTools.ActionTaken",
BreakpointWithConditionAdded = "DevTools.BreakpointWithConditionAdded",
BreakpointEditDialogRevealedFrom = "DevTools.BreakpointEditDialogRevealedFrom",
PanelClosed = "DevTools.PanelClosed",
PanelShown = "DevTools.PanelShown",
Expand Down Expand Up @@ -343,8 +342,6 @@ export declare const enum EnumeratedHistogram {
ColorConvertedFrom = "DevTools.ColorConvertedFrom",
ColorPickerOpenedFrom = "DevTools.ColorPickerOpenedFrom",
CSSPropertyDocumentation = "DevTools.CSSPropertyDocumentation",
InlineScriptParsed = "DevTools.InlineScriptParsed",
VMInlineScriptTypeShown = "DevTools.VMInlineScriptShown",
BreakpointsRestoredFromStorageCount = "DevTools.BreakpointsRestoredFromStorageCount",
SwatchActivated = "DevTools.SwatchActivated",
BadgeActivated = "DevTools.BadgeActivated",
Expand Down
2 changes: 1 addition & 1 deletion public/core/host/InspectorFrontendHostAPI.js.map

Large diffs are not rendered by default.

16 changes: 2 additions & 14 deletions public/core/host/UserMetrics.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
export declare class UserMetrics {
#private;
constructor();
breakpointWithConditionAdded(breakpointWithConditionAdded: BreakpointWithConditionAdded): void;
breakpointEditDialogRevealedFrom(breakpointEditDialogRevealedFrom: BreakpointEditDialogRevealedFrom): void;
panelShown(panelName: string, isLaunching?: boolean): void;
/**
Expand Down Expand Up @@ -30,8 +29,6 @@ export declare class UserMetrics {
experimentChanged(experimentId: string, isEnabled: boolean): void;
developerResourceLoaded(developerResourceLoaded: DeveloperResourceLoaded): void;
developerResourceScheme(developerResourceScheme: DeveloperResourceScheme): void;
inlineScriptParsed(inlineScriptType: VMInlineScriptType): void;
vmInlineScriptContentShown(inlineScriptType: VMInlineScriptType): void;
language(language: Intl.UnicodeBCP47LocaleIdentifier): void;
syncSetting(devtoolsSyncSettingEnabled: boolean): void;
recordingAssertion(value: RecordingAssertion): void;
Expand Down Expand Up @@ -660,11 +657,6 @@ export declare enum DevtoolsExperiments {
'timeline-track-configuration' = 88,
'MaxValue' = 89
}
export declare const enum BreakpointWithConditionAdded {
Logpoint = 0,
ConditionalBreakpoint = 1,
MaxValue = 2
}
export declare const enum BreakpointEditDialogRevealedFrom {
BreakpointSidebarContextMenu = 0,
BreakpointSidebarEditButton = 1,
Expand Down Expand Up @@ -861,11 +853,6 @@ export declare enum NetworkPanelMoreFilters {
'3rd-party requests' = 4,
MaxValue = 5
}
export declare const enum VMInlineScriptType {
MODULE_SCRIPT = 0,
CLASSIC_SCRIPT = 1,
MaxValue = 2
}
export declare enum Language {
'af' = 1,
'am' = 2,
Expand Down Expand Up @@ -1092,7 +1079,8 @@ export declare const enum SwatchType {
Angle = 7,
Length = 8,
PositionFallbackLink = 9,
MaxValue = 10
PositionTryLink = 10,
MaxValue = 11
}
export declare const enum BadgeType {
GRID = 0,
Expand Down
21 changes: 2 additions & 19 deletions public/core/host/UserMetrics.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion public/core/host/UserMetrics.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/core/i18n/locales/en-US.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/core/i18n/locales/en-XL.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/core/i18n/locales/generated/collected-ui-strings.d

Large diffs are not rendered by default.

Loading

0 comments on commit b732351

Please sign in to comment.