Skip to content

Commit 9dfb9ba

Browse files
author
copybara-service
committed
deploy: 4200e30
1 parent c2a572e commit 9dfb9ba

File tree

60 files changed

+618
-359
lines changed

Some content is hidden

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

60 files changed

+618
-359
lines changed

expected_grd_files.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -382,6 +382,7 @@
382382
"front_end/entrypoints/wasmparser_worker/wasmparser_worker-entrypoint.js",
383383
"front_end/entrypoints/wasmparser_worker/wasmparser_worker.js",
384384
"front_end/entrypoints/worker_app/worker_app.js",
385+
"front_end/foundation/foundation.js",
385386
"front_end/inspector.html",
386387
"front_end/js_app.html",
387388
"front_end/models/ai_assistance/ai_assistance.js",

front_end/core/common/Settings.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ export declare class Settings {
2020
globalStorage: SettingsStorage | null;
2121
localStorage: SettingsStorage | null;
2222
logSettingAccess?: (name: string, value: number | string | boolean) => Promise<void>;
23+
runSettingsMigration?: boolean;
2324
}): Settings;
2425
static removeInstance(): void;
2526
private registerModuleSetting;
@@ -126,7 +127,7 @@ export declare class VersionController {
126127
static readonly SYNCED_VERSION_SETTING_NAME = "syncedInspectorVersion";
127128
static readonly LOCAL_VERSION_SETTING_NAME = "localInspectorVersion";
128129
static readonly CURRENT_VERSION = 40;
129-
constructor();
130+
constructor(settings: Settings);
130131
/**
131132
* Force re-sets all version number settings to the current version without
132133
* running any migrations.

front_end/core/common/Settings.js

Lines changed: 100 additions & 93 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

front_end/core/common/Settings.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

front_end/core/common/common.js

Lines changed: 99 additions & 93 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

front_end/core/common/common.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

front_end/entrypoints/main/MainImpl.d.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import * as Common from '../../core/common/common.js';
12
import * as ProtocolClient from '../../core/protocol_client/protocol_client.js';
23
import * as AiAssistanceModel from '../../models/ai_assistance/ai_assistance.js';
34
import * as UI from '../../ui/legacy/legacy.js';
@@ -7,7 +8,11 @@ export declare class MainImpl {
78
static time(label: string): void;
89
static timeEnd(label: string): void;
910
requestAndRegisterLocaleData(): Promise<void>;
10-
createSettings(prefs: Record<string, string>): void;
11+
createSettingsStorage(prefs: Record<string, string>): {
12+
syncedStorage: Common.Settings.SettingsStorage;
13+
globalStorage: Common.Settings.SettingsStorage;
14+
localStorage: Common.Settings.SettingsStorage;
15+
};
1116
readyForTest(): Promise<void>;
1217
static instanceForTest: MainImpl | null;
1318
}

front_end/entrypoints/main/MainImpl.js

Lines changed: 9 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

front_end/entrypoints/main/MainImpl.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)