Skip to content

Commit

Permalink
Build 29-09-2024 (#54)
Browse files Browse the repository at this point in the history
Latest devtools frontend commit:
[862905a](https://chromium.googlesource.com/devtools/devtools-frontend.git/+/862905a4376db9c2964d5178b30d11bf80c6cfdd)

Co-authored-by: GitHub <noreply@github.com>
  • Loading branch information
github-actions[bot] and web-flow authored Sep 29, 2024
1 parent 1ba0313 commit af0c593
Show file tree
Hide file tree
Showing 541 changed files with 8,186 additions and 4,408 deletions.
2 changes: 1 addition & 1 deletion public/Images/send.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions public/Images/src/send.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion public/core/common/SettingRegistration.test.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/SettingRegistration.test.js.map

Large diffs are not rendered by default.

16 changes: 9 additions & 7 deletions public/core/common/Settings.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ export declare class Settings {
settingForTest(settingName: string): Setting<unknown>;
/**
* Get setting via key, and create a new setting if the requested setting does not exist.
* @param {string} key kebab-case string ID
* @param {T} defaultValue
* @param {SettingStorageType=} storageType If not specified, SettingStorageType.GLOBAL is used.
*/
createSetting<T>(key: string, defaultValue: T, storageType?: SettingStorageType): Setting<T>;
createLocalSetting<T>(key: string, defaultValue: T): Setting<T>;
Expand Down Expand Up @@ -178,16 +181,15 @@ export declare class VersionController {
private clearBreakpointsWhenTooMany;
}
export declare const enum SettingStorageType {
/**
* Synced storage persists settings with the active Chrome profile but also
* syncs the settings across devices via Chrome Sync.
*/
/** Persists with the active Chrome profile but also syncs the settings across devices via Chrome Sync. */
SYNCED = "Synced",
/** Global storage persists settings with the active Chrome profile */
/** Persists with the active Chrome profile, but not synchronized to other devices.
* The default SettingStorageType of createSetting(). */
GLOBAL = "Global",
/** Uses Window.localStorage */
/** Uses Window.localStorage. Not recommended, legacy. */
LOCAL = "Local",
/** Session storage dies when DevTools window closes */
/** Session storage dies when DevTools window closes. Useful for atypical conditions that should be reverted when the
* user is done with their task. (eg Emulation modes, Debug overlays). These are also not carried into/out of incognito */
SESSION = "Session"
}
export declare function moduleSetting(settingName: string): Setting<unknown>;
Expand Down
3 changes: 3 additions & 0 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.

4 changes: 2 additions & 2 deletions public/core/host/AidaClient.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ export interface AidaResponse {
export declare const enum AidaAccessPreconditions {
AVAILABLE = "available",
NO_ACCOUNT_EMAIL = "no-account-email",
NO_ACTIVE_SYNC = "no-active-sync",
NO_INTERNET = "no-internet"
NO_INTERNET = "no-internet",
SYNC_IS_PAUSED = "sync-is-paused"
}
export declare const CLIENT_NAME = "CHROME_DEVTOOLS";
export declare class AidaAbortError extends Error {
Expand Down
10 changes: 5 additions & 5 deletions public/core/host/AidaClient.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/AidaClient.js.map

Large diffs are not rendered by default.

26 changes: 21 additions & 5 deletions public/core/host/AidaClient.test.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/AidaClient.test.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions public/core/host/InspectorFrontendHost.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/InspectorFrontendHost.js.map

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions public/core/host/InspectorFrontendHostAPI.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,8 @@ export interface SyncInformation {
accountImage?: string;
/** The full name of the account used for syncing */
accountFullName?: string;
/** Whether Chrome Sync is paused, equivalent to the user being logged out automatically */
isSyncPaused?: boolean;
}
/**
* Enum for recordPerformanceHistogram
Expand Down
2 changes: 1 addition & 1 deletion public/core/host/InspectorFrontendHostAPI.js.map

Large diffs are not rendered by default.

2 changes: 0 additions & 2 deletions public/core/host/UserMetrics.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,6 @@ export declare const enum IssueOpener {
* gaps are expected.
*/
export declare enum DevtoolsExperiments {
'apply-custom-stylesheet' = 0,
'capture-node-creation-stacks' = 1,
'live-heap-profile' = 11,
'protocol-monitor' = 13,
Expand Down Expand Up @@ -654,7 +653,6 @@ export declare enum DevtoolsExperiments {
'perf-panel-annotations' = 94,
'timeline-rpp-sidebar' = 95,
'timeline-observations' = 96,
'gen-ai-settings-panel' = 97,
'timeline-server-timings' = 98,
'timeline-layout-shift-details' = 99,
'extension-storage-viewer' = 100,
Expand Down
2 changes: 0 additions & 2 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 af0c593

Please sign in to comment.