Skip to content

Commit

Permalink
Build 22-09-2024 (#53)
Browse files Browse the repository at this point in the history
Latest devtools frontend commit:
[d62087c](https://chromium.googlesource.com/devtools/devtools-frontend.git/+/d62087c057dc79f6d88bde563c8552c3ce60877d)

Co-authored-by: GitHub <noreply@github.com>
  • Loading branch information
github-actions[bot] and web-flow authored Sep 22, 2024
1 parent d71c6fb commit 1ba0313
Show file tree
Hide file tree
Showing 886 changed files with 10,481 additions and 7,479 deletions.
3 changes: 3 additions & 0 deletions public/Images/Images.js

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

3 changes: 3 additions & 0 deletions public/Images/Images.prebundle.js

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

1 change: 1 addition & 0 deletions public/Images/arrow-right-circle.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions public/Images/src/arrow-right-circle.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions public/Images/src/thumb-down-filled.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions public/Images/src/thumb-up-filled.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/Images/thumb-down-filled.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/Images/thumb-up-filled.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 10 additions & 1 deletion public/core/common/Settings.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,14 @@ export declare class Settings {
getHostConfig(): Root.Runtime.HostConfig;
private registerModuleSetting;
static normalizeSettingName(name: string): string;
/**
* Prefer a module setting if this setting is one that you might not want to
* surface to the user to control themselves. Examples of these are settings
* to store UI state such as how a user choses to position a split widget or
* which panel they last opened.
* If you are creating a setting that you expect the user to control, and
* sync, prefer {@see createSetting}
*/
moduleSetting<T = any>(settingName: string): Setting<T>;
settingForTest(settingName: string): Setting<unknown>;
/**
Expand Down Expand Up @@ -112,7 +120,7 @@ export declare class VersionController {
static readonly GLOBAL_VERSION_SETTING_NAME = "inspectorVersion";
static readonly SYNCED_VERSION_SETTING_NAME = "syncedInspectorVersion";
static readonly LOCAL_VERSION_SETTING_NAME = "localInspectorVersion";
static readonly CURRENT_VERSION = 37;
static readonly CURRENT_VERSION = 38;
constructor();
/**
* Force re-sets all version number settings to the current version without
Expand Down Expand Up @@ -165,6 +173,7 @@ export declare class VersionController {
updateVersionFrom34To35(): void;
updateVersionFrom35To36(): void;
updateVersionFrom36To37(): void;
updateVersionFrom37To38(): void;
private migrateSettingsFromLocalStorage;
private clearBreakpointsWhenTooMany;
}
Expand Down
28 changes: 27 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.

60 changes: 60 additions & 0 deletions public/core/common/Settings.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/Settings.test.js.map

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion public/core/host/AidaClient.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ export declare enum ClientFeature {
export declare enum UserTier {
USER_TIER_UNSPECIFIED = 0,
TESTERS = 1,
BETA = 2,
PUBLIC = 3
}
export interface AidaRequest {
Expand Down Expand Up @@ -88,10 +89,14 @@ export declare const enum AidaAccessPreconditions {
NO_INTERNET = "no-internet"
}
export declare const CLIENT_NAME = "CHROME_DEVTOOLS";
export declare class AidaAbortError extends Error {
}
export declare class AidaClient {
static buildConsoleInsightsRequest(input: string): AidaRequest;
static checkAccessPreconditions(): Promise<AidaAccessPreconditions>;
fetch(request: AidaRequest): AsyncGenerator<AidaResponse, void, void>;
fetch(request: AidaRequest, options?: {
signal?: AbortSignal;
}): AsyncGenerator<AidaResponse, void, void>;
registerClientEvent(clientEvent: AidaDoConversationClientEvent): Promise<AidaClientResult>;
}
export declare function convertToUserTierEnum(userTier: string | undefined): UserTier;
13 changes: 11 additions & 2 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.

3 changes: 2 additions & 1 deletion public/core/host/UserMetrics.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,8 @@ export declare enum DevtoolsExperiments {
'gen-ai-settings-panel' = 97,
'timeline-server-timings' = 98,
'timeline-layout-shift-details' = 99,
MAX_VALUE = 100
'extension-storage-viewer' = 100,
MAX_VALUE = 101
}
export declare const enum ColorPickerOpenedFrom {
SOURCES_PANEL = 0,
Expand Down
Loading

0 comments on commit 1ba0313

Please sign in to comment.