Skip to content

Commit

Permalink
Build 18-02-2024 (#22)
Browse files Browse the repository at this point in the history
Latest devtools frontend commit:
[5fc9bbb](https://chromium.googlesource.com/devtools/devtools-frontend.git/+/5fc9bbbdc531f30eda28cc95931a201189c75ebf)

Co-authored-by: GitHub <noreply@github.com>
  • Loading branch information
github-actions[bot] and web-flow authored Feb 18, 2024
1 parent 5a43ee4 commit 7480554
Show file tree
Hide file tree
Showing 424 changed files with 10,609 additions and 9,073 deletions.
11 changes: 11 additions & 0 deletions public/core/common/SettingRegistration.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,11 @@ export interface SettingRegistration {
* setting conditions are checked.
*/
condition?: Root.Runtime.Condition;
/**
* A function that returns true if the setting should be disabled, along with
* the reason why.
*/
disabledCondition?: () => DisabledConditionResult;
/**
* If a setting is deprecated, define this notice to show an appropriate warning according to the `warning` propertiy.
* If `disabled` is set, the setting will be disabled in the settings UI. In that case, `experiment` optionally can be
Expand Down Expand Up @@ -141,4 +146,10 @@ interface RawSettingExtensionOption {
raw: true;
}
export type SettingExtensionOption = LocalizedSettingExtensionOption | RawSettingExtensionOption;
export type DisabledConditionResult = {
disabled: true;
reason: string;
} | {
disabled: false;
};
export {};
2 changes: 1 addition & 1 deletion public/core/common/SettingRegistration.js.map

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion public/core/common/Settings.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@ export declare class Deprecation {
}
export declare class Setting<V> {
#private;
readonly name: string;
readonly defaultValue: V;
private readonly eventSupport;
readonly storage: SettingsStorage;
readonly name: string;
constructor(name: string, defaultValue: V, eventSupport: ObjectWrapper<GenericEvents>, storage: SettingsStorage);
setSerializer(serializer: Serializer<unknown, V>): void;
addChangeListener(listener: (arg0: EventTargetEvent<V>) => void, thisObject?: Object): EventDescriptor;
Expand All @@ -75,6 +75,7 @@ export declare class Setting<V> {
setTitle(title: string): void;
setRequiresUserAction(requiresUserAction: boolean): void;
disabled(): boolean;
disabledReason(): string | undefined;
setDisabled(disabled: boolean): void;
get(): V;
forceGet(): Promise<V>;
Expand Down
33 changes: 31 additions & 2 deletions 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/Worker.js.map

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/i18n/locales/af.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/core/i18n/locales/am.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/core/i18n/locales/ar.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/core/i18n/locales/as.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/core/i18n/locales/az.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/core/i18n/locales/be.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/core/i18n/locales/bg.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/core/i18n/locales/bn.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/core/i18n/locales/bs.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/core/i18n/locales/ca.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/core/i18n/locales/cs.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/core/i18n/locales/cy.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/core/i18n/locales/da.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/core/i18n/locales/de.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/core/i18n/locales/el.json

Large diffs are not rendered by default.

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

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/es-419.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/core/i18n/locales/es.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/core/i18n/locales/et.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/core/i18n/locales/eu.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/core/i18n/locales/fa.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/core/i18n/locales/fi.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/core/i18n/locales/fil.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/core/i18n/locales/fr-CA.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/core/i18n/locales/fr.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.

61 changes: 56 additions & 5 deletions public/core/i18n/locales/generated/en-US.json
Original file line number Diff line number Diff line change
Expand Up @@ -329,6 +329,30 @@
"core/sdk/NetworkRequest.ts | domainMismatch": {
"message": "This cookie was blocked because neither did the request URL's domain exactly match the cookie's domain, nor was the request URL's domain a subdomain of the cookie's Domain attribute value."
},
"core/sdk/NetworkRequest.ts | exemptionReasonCorsOptIn": {
"message": "This cookie is allowed by CORS opt-in. Learn more: goo.gle/cors"
},
"core/sdk/NetworkRequest.ts | exemptionReasonEnterprisePolicy": {
"message": "This cookie is allowed by Chrome Enterprise policy. Learn more: goo.gle/ce-3pc"
},
"core/sdk/NetworkRequest.ts | exemptionReasonStorageAccessAPI": {
"message": "This cookie is allowed by the Storage Access API. Learn more: goo.gle/saa"
},
"core/sdk/NetworkRequest.ts | exemptionReasonTopLevelStorageAccessAPI": {
"message": "This cookie is allowed by the top-level Storage Access API. Learn more: goo.gle/saa-top"
},
"core/sdk/NetworkRequest.ts | exemptionReasonTPCDDeprecationTrial": {
"message": "This cookie is allowed by third-party cookie phaseout deprecation trial."
},
"core/sdk/NetworkRequest.ts | exemptionReasonTPCDHeuristics": {
"message": "This cookie is allowed by third-party cookie phaseout heuristics. Learn more: goo.gle/hbe"
},
"core/sdk/NetworkRequest.ts | exemptionReasonTPCDMetadata": {
"message": "This cookie is allowed by a third-party cookie deprecation trial grace period. Learn more: goo.gle/ps-dt."
},
"core/sdk/NetworkRequest.ts | exemptionReasonUserSetting": {
"message": "This cookie is allowed by user preference."
},
"core/sdk/NetworkRequest.ts | nameValuePairExceedsMaxSize": {
"message": "This cookie was blocked because it was too large. The combined size of the name and value must be less than or equal to 4096 characters."
},
Expand Down Expand Up @@ -1124,6 +1148,9 @@
"generated/Deprecation.ts | CrossOriginWindowConfirm": {
"message": "Triggering window.confirm from cross origin iframes has been deprecated and will be removed in the future."
},
"generated/Deprecation.ts | CSSCustomStateDeprecatedSyntax": {
"message": ":--customstatename is deprecated. Please use the :state(customstatename) syntax instead."
},
"generated/Deprecation.ts | CSSSelectorInternalMediaControlsOverlayCastButton": {
"message": "The disableRemotePlayback attribute should be used in order to disable the default Cast integration instead of using -internal-media-controls-overlay-cast-button selector."
},
Expand Down Expand Up @@ -6434,6 +6461,9 @@
"panels/explain/explain-meta.ts | explainThisWarning": {
"message": "Explain this warning"
},
"panels/explain/explain-meta.ts | wrongLocale": {
"message": "Only English locales are currently supported."
},
"panels/issues/AffectedBlockedByResponseView.ts | blockedResource": {
"message": "Blocked Resource"
},
Expand Down Expand Up @@ -7583,9 +7613,6 @@
"panels/mobile_throttling/NetworkPanelIndicator.ts | acceptedEncodingOverrideSet": {
"message": "The set of accepted Content-Encoding headers has been modified by DevTools, see the Network conditions panel"
},
"panels/mobile_throttling/NetworkPanelIndicator.ts | browserCacheDisabled": {
"message": "Browser cache is disabled"
},
"panels/mobile_throttling/NetworkPanelIndicator.ts | networkThrottlingIsEnabled": {
"message": "Network throttling is enabled"
},
Expand Down Expand Up @@ -11036,9 +11063,21 @@
"panels/settings/KeybindsSettingsTab.ts | RestoreDefaultShortcuts": {
"message": "Restore default shortcuts"
},
"panels/settings/KeybindsSettingsTab.ts | shortcutChangesApplied": {
"message": "Changes to shortcut applied"
},
"panels/settings/KeybindsSettingsTab.ts | shortcutChangesDiscared": {
"message": "Changes to shortcut discarded"
},
"panels/settings/KeybindsSettingsTab.ts | shortcutChangesRestored": {
"message": "Changes to shortcut restored to default"
},
"panels/settings/KeybindsSettingsTab.ts | shortcutModified": {
"message": "Shortcut modified"
},
"panels/settings/KeybindsSettingsTab.ts | shortcutRemoved": {
"message": "{PH1} Shortcut removed"
},
"panels/settings/KeybindsSettingsTab.ts | shortcuts": {
"message": "Shortcuts"
},
Expand Down Expand Up @@ -12815,6 +12854,9 @@
"panels/timeline/TimelinePanel.ts | failedToSaveTimelineSS": {
"message": "Failed to save timeline: {PH1} ({PH2})"
},
"panels/timeline/TimelinePanel.ts | fixMe": {
"message": "Fix me"
},
"panels/timeline/TimelinePanel.ts | HardwareConcurrencyIsEnabled": {
"message": "- Hardware concurrency override is enabled"
},
Expand Down Expand Up @@ -13244,8 +13286,11 @@
"panels/timeline/TimelineUIUtils.ts | initialPriority": {
"message": "Initial Priority"
},
"panels/timeline/TimelineUIUtils.ts | initiator": {
"message": "Initiator"
"panels/timeline/TimelineUIUtils.ts | initiatedBy": {
"message": "Initiated by"
},
"panels/timeline/TimelineUIUtils.ts | initiatorFor": {
"message": "Initiator for"
},
"panels/timeline/TimelineUIUtils.ts | inputDelay": {
"message": "Input delay"
Expand Down Expand Up @@ -14312,6 +14357,12 @@
"ui/legacy/components/object_ui/RemoteObjectPreviewFormatter.ts | thePropertyIsComputedWithAGetter": {
"message": "The property is computed with a getter"
},
"ui/legacy/components/perf_ui/BrickBreaker.ts | congrats": {
"message": "Congrats, you win!"
},
"ui/legacy/components/perf_ui/BrickBreaker.ts | ps": {
"message": "PS: You can also open the game by typing fixme"
},
"ui/legacy/components/perf_ui/FilmStripView.ts | doubleclickToZoomImageClickTo": {
"message": "Doubleclick to zoom image. Click to view preceding requests."
},
Expand Down
Loading

0 comments on commit 7480554

Please sign in to comment.