Skip to content

Commit 7480554

Browse files
Build 18-02-2024 (#22)
Latest devtools frontend commit: [5fc9bbb](https://chromium.googlesource.com/devtools/devtools-frontend.git/+/5fc9bbbdc531f30eda28cc95931a201189c75ebf) Co-authored-by: GitHub <noreply@github.com>
1 parent 5a43ee4 commit 7480554

File tree

424 files changed

+10609
-9073
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

424 files changed

+10609
-9073
lines changed

public/core/common/SettingRegistration.d.ts

+11
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,11 @@ export interface SettingRegistration {
113113
* setting conditions are checked.
114114
*/
115115
condition?: Root.Runtime.Condition;
116+
/**
117+
* A function that returns true if the setting should be disabled, along with
118+
* the reason why.
119+
*/
120+
disabledCondition?: () => DisabledConditionResult;
116121
/**
117122
* If a setting is deprecated, define this notice to show an appropriate warning according to the `warning` propertiy.
118123
* If `disabled` is set, the setting will be disabled in the settings UI. In that case, `experiment` optionally can be
@@ -141,4 +146,10 @@ interface RawSettingExtensionOption {
141146
raw: true;
142147
}
143148
export type SettingExtensionOption = LocalizedSettingExtensionOption | RawSettingExtensionOption;
149+
export type DisabledConditionResult = {
150+
disabled: true;
151+
reason: string;
152+
} | {
153+
disabled: false;
154+
};
144155
export {};

public/core/common/SettingRegistration.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/core/common/Settings.d.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@ export declare class Deprecation {
6262
}
6363
export declare class Setting<V> {
6464
#private;
65-
readonly name: string;
6665
readonly defaultValue: V;
6766
private readonly eventSupport;
6867
readonly storage: SettingsStorage;
68+
readonly name: string;
6969
constructor(name: string, defaultValue: V, eventSupport: ObjectWrapper<GenericEvents>, storage: SettingsStorage);
7070
setSerializer(serializer: Serializer<unknown, V>): void;
7171
addChangeListener(listener: (arg0: EventTargetEvent<V>) => void, thisObject?: Object): EventDescriptor;
@@ -75,6 +75,7 @@ export declare class Setting<V> {
7575
setTitle(title: string): void;
7676
setRequiresUserAction(requiresUserAction: boolean): void;
7777
disabled(): boolean;
78+
disabledReason(): string | undefined;
7879
setDisabled(disabled: boolean): void;
7980
get(): V;
8081
forceGet(): Promise<V>;

public/core/common/Settings.js

+31-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/core/common/Settings.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/core/common/Worker.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/core/i18n/locales/af.json

+1-1
Large diffs are not rendered by default.

public/core/i18n/locales/am.json

+1-1
Large diffs are not rendered by default.

public/core/i18n/locales/ar.json

+1-1
Large diffs are not rendered by default.

public/core/i18n/locales/as.json

+1-1
Large diffs are not rendered by default.

public/core/i18n/locales/az.json

+1-1
Large diffs are not rendered by default.

public/core/i18n/locales/be.json

+1-1
Large diffs are not rendered by default.

public/core/i18n/locales/bg.json

+1-1
Large diffs are not rendered by default.

public/core/i18n/locales/bn.json

+1-1
Large diffs are not rendered by default.

public/core/i18n/locales/bs.json

+1-1
Large diffs are not rendered by default.

public/core/i18n/locales/ca.json

+1-1
Large diffs are not rendered by default.

public/core/i18n/locales/cs.json

+1-1
Large diffs are not rendered by default.

public/core/i18n/locales/cy.json

+1-1
Large diffs are not rendered by default.

public/core/i18n/locales/da.json

+1-1
Large diffs are not rendered by default.

public/core/i18n/locales/de.json

+1-1
Large diffs are not rendered by default.

public/core/i18n/locales/el.json

+1-1
Large diffs are not rendered by default.

public/core/i18n/locales/en-GB.json

+1-1
Large diffs are not rendered by default.

public/core/i18n/locales/en-US.json

+1-1
Large diffs are not rendered by default.

public/core/i18n/locales/en-XL.json

+1-1
Large diffs are not rendered by default.

public/core/i18n/locales/es-419.json

+1-1
Large diffs are not rendered by default.

public/core/i18n/locales/es.json

+1-1
Large diffs are not rendered by default.

public/core/i18n/locales/et.json

+1-1
Large diffs are not rendered by default.

public/core/i18n/locales/eu.json

+1-1
Large diffs are not rendered by default.

public/core/i18n/locales/fa.json

+1-1
Large diffs are not rendered by default.

public/core/i18n/locales/fi.json

+1-1
Large diffs are not rendered by default.

public/core/i18n/locales/fil.json

+1-1
Large diffs are not rendered by default.

public/core/i18n/locales/fr-CA.json

+1-1
Large diffs are not rendered by default.

public/core/i18n/locales/fr.json

+1-1
Large diffs are not rendered by default.

public/core/i18n/locales/generated/collected-ui-strings.d

+1-1
Large diffs are not rendered by default.

public/core/i18n/locales/generated/en-US.json

+56-5
Original file line numberDiff line numberDiff line change
@@ -329,6 +329,30 @@
329329
"core/sdk/NetworkRequest.ts | domainMismatch": {
330330
"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."
331331
},
332+
"core/sdk/NetworkRequest.ts | exemptionReasonCorsOptIn": {
333+
"message": "This cookie is allowed by CORS opt-in. Learn more: goo.gle/cors"
334+
},
335+
"core/sdk/NetworkRequest.ts | exemptionReasonEnterprisePolicy": {
336+
"message": "This cookie is allowed by Chrome Enterprise policy. Learn more: goo.gle/ce-3pc"
337+
},
338+
"core/sdk/NetworkRequest.ts | exemptionReasonStorageAccessAPI": {
339+
"message": "This cookie is allowed by the Storage Access API. Learn more: goo.gle/saa"
340+
},
341+
"core/sdk/NetworkRequest.ts | exemptionReasonTopLevelStorageAccessAPI": {
342+
"message": "This cookie is allowed by the top-level Storage Access API. Learn more: goo.gle/saa-top"
343+
},
344+
"core/sdk/NetworkRequest.ts | exemptionReasonTPCDDeprecationTrial": {
345+
"message": "This cookie is allowed by third-party cookie phaseout deprecation trial."
346+
},
347+
"core/sdk/NetworkRequest.ts | exemptionReasonTPCDHeuristics": {
348+
"message": "This cookie is allowed by third-party cookie phaseout heuristics. Learn more: goo.gle/hbe"
349+
},
350+
"core/sdk/NetworkRequest.ts | exemptionReasonTPCDMetadata": {
351+
"message": "This cookie is allowed by a third-party cookie deprecation trial grace period. Learn more: goo.gle/ps-dt."
352+
},
353+
"core/sdk/NetworkRequest.ts | exemptionReasonUserSetting": {
354+
"message": "This cookie is allowed by user preference."
355+
},
332356
"core/sdk/NetworkRequest.ts | nameValuePairExceedsMaxSize": {
333357
"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."
334358
},
@@ -1124,6 +1148,9 @@
11241148
"generated/Deprecation.ts | CrossOriginWindowConfirm": {
11251149
"message": "Triggering window.confirm from cross origin iframes has been deprecated and will be removed in the future."
11261150
},
1151+
"generated/Deprecation.ts | CSSCustomStateDeprecatedSyntax": {
1152+
"message": ":--customstatename is deprecated. Please use the :state(customstatename) syntax instead."
1153+
},
11271154
"generated/Deprecation.ts | CSSSelectorInternalMediaControlsOverlayCastButton": {
11281155
"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."
11291156
},
@@ -6434,6 +6461,9 @@
64346461
"panels/explain/explain-meta.ts | explainThisWarning": {
64356462
"message": "Explain this warning"
64366463
},
6464+
"panels/explain/explain-meta.ts | wrongLocale": {
6465+
"message": "Only English locales are currently supported."
6466+
},
64376467
"panels/issues/AffectedBlockedByResponseView.ts | blockedResource": {
64386468
"message": "Blocked Resource"
64396469
},
@@ -7583,9 +7613,6 @@
75837613
"panels/mobile_throttling/NetworkPanelIndicator.ts | acceptedEncodingOverrideSet": {
75847614
"message": "The set of accepted Content-Encoding headers has been modified by DevTools, see the Network conditions panel"
75857615
},
7586-
"panels/mobile_throttling/NetworkPanelIndicator.ts | browserCacheDisabled": {
7587-
"message": "Browser cache is disabled"
7588-
},
75897616
"panels/mobile_throttling/NetworkPanelIndicator.ts | networkThrottlingIsEnabled": {
75907617
"message": "Network throttling is enabled"
75917618
},
@@ -11036,9 +11063,21 @@
1103611063
"panels/settings/KeybindsSettingsTab.ts | RestoreDefaultShortcuts": {
1103711064
"message": "Restore default shortcuts"
1103811065
},
11066+
"panels/settings/KeybindsSettingsTab.ts | shortcutChangesApplied": {
11067+
"message": "Changes to shortcut applied"
11068+
},
11069+
"panels/settings/KeybindsSettingsTab.ts | shortcutChangesDiscared": {
11070+
"message": "Changes to shortcut discarded"
11071+
},
11072+
"panels/settings/KeybindsSettingsTab.ts | shortcutChangesRestored": {
11073+
"message": "Changes to shortcut restored to default"
11074+
},
1103911075
"panels/settings/KeybindsSettingsTab.ts | shortcutModified": {
1104011076
"message": "Shortcut modified"
1104111077
},
11078+
"panels/settings/KeybindsSettingsTab.ts | shortcutRemoved": {
11079+
"message": "{PH1} Shortcut removed"
11080+
},
1104211081
"panels/settings/KeybindsSettingsTab.ts | shortcuts": {
1104311082
"message": "Shortcuts"
1104411083
},
@@ -12815,6 +12854,9 @@
1281512854
"panels/timeline/TimelinePanel.ts | failedToSaveTimelineSS": {
1281612855
"message": "Failed to save timeline: {PH1} ({PH2})"
1281712856
},
12857+
"panels/timeline/TimelinePanel.ts | fixMe": {
12858+
"message": "Fix me"
12859+
},
1281812860
"panels/timeline/TimelinePanel.ts | HardwareConcurrencyIsEnabled": {
1281912861
"message": "- Hardware concurrency override is enabled"
1282012862
},
@@ -13244,8 +13286,11 @@
1324413286
"panels/timeline/TimelineUIUtils.ts | initialPriority": {
1324513287
"message": "Initial Priority"
1324613288
},
13247-
"panels/timeline/TimelineUIUtils.ts | initiator": {
13248-
"message": "Initiator"
13289+
"panels/timeline/TimelineUIUtils.ts | initiatedBy": {
13290+
"message": "Initiated by"
13291+
},
13292+
"panels/timeline/TimelineUIUtils.ts | initiatorFor": {
13293+
"message": "Initiator for"
1324913294
},
1325013295
"panels/timeline/TimelineUIUtils.ts | inputDelay": {
1325113296
"message": "Input delay"
@@ -14312,6 +14357,12 @@
1431214357
"ui/legacy/components/object_ui/RemoteObjectPreviewFormatter.ts | thePropertyIsComputedWithAGetter": {
1431314358
"message": "The property is computed with a getter"
1431414359
},
14360+
"ui/legacy/components/perf_ui/BrickBreaker.ts | congrats": {
14361+
"message": "Congrats, you win!"
14362+
},
14363+
"ui/legacy/components/perf_ui/BrickBreaker.ts | ps": {
14364+
"message": "PS: You can also open the game by typing fixme"
14365+
},
1431514366
"ui/legacy/components/perf_ui/FilmStripView.ts | doubleclickToZoomImageClickTo": {
1431614367
"message": "Doubleclick to zoom image. Click to view preceding requests."
1431714368
},

0 commit comments

Comments
 (0)