chrome-devtools-frontend 1.0.1636056 → 1.0.1640418
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/front_end/core/common/Color.ts +0 -4
- package/front_end/core/host/AidaClientTypes.ts +8 -6
- package/front_end/core/root/Runtime.ts +2 -2
- package/front_end/core/sdk/DOMStorageModel.ts +1 -1
- package/front_end/core/sdk/SourceMap.ts +8 -3
- package/front_end/core/sdk/TargetManager.ts +14 -1
- package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshot.ts +147 -0
- package/front_end/generated/ARIAProperties.js +17 -4
- package/front_end/generated/InspectorBackendCommands.ts +13 -7
- package/front_end/generated/SupportedCSSProperties.js +1 -0
- package/front_end/generated/protocol-mapping.d.ts +7 -0
- package/front_end/generated/protocol-proxy-api.d.ts +14 -0
- package/front_end/generated/protocol.ts +120 -2
- package/front_end/global_typings/global_defs.d.ts +13 -0
- package/front_end/models/ai_assistance/AiAgent2.ts +116 -0
- package/front_end/models/ai_assistance/AiConversation.ts +22 -36
- package/front_end/models/ai_assistance/AiHistoryStorage.ts +0 -1
- package/front_end/models/ai_assistance/AiOrigins.ts +46 -0
- package/front_end/models/ai_assistance/AiUtils.ts +9 -0
- package/front_end/models/ai_assistance/README.md +16 -0
- package/front_end/models/ai_assistance/StorageItem.ts +30 -26
- package/front_end/models/ai_assistance/agents/AccessibilityAgent.ts +12 -5
- package/front_end/models/ai_assistance/agents/AiAgent.ts +86 -32
- package/front_end/models/ai_assistance/agents/ContextSelectionAgent.snapshot.txt +2 -2
- package/front_end/models/ai_assistance/agents/ContextSelectionAgent.ts +31 -10
- package/front_end/models/ai_assistance/agents/ConversationSummaryAgent.ts +1 -1
- package/front_end/models/ai_assistance/agents/FileAgent.ts +2 -2
- package/front_end/models/ai_assistance/agents/GreenDevAgent.ts +1 -3
- package/front_end/models/ai_assistance/agents/NetworkAgent.snapshot.txt +19 -0
- package/front_end/models/ai_assistance/agents/NetworkAgent.ts +9 -4
- package/front_end/models/ai_assistance/agents/PerformanceAgent.snapshot.txt +2 -2
- package/front_end/models/ai_assistance/agents/PerformanceAgent.ts +41 -12
- package/front_end/models/ai_assistance/agents/StorageAgent.ts +442 -122
- package/front_end/models/ai_assistance/agents/StylingAgent.ts +2 -2
- package/front_end/models/ai_assistance/ai_assistance.ts +4 -2
- package/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.snapshot.txt +2 -2
- package/front_end/models/ai_assistance/performance/AIContext.ts +7 -8
- package/front_end/models/ai_assistance/skills/README.md +40 -0
- package/front_end/models/ai_assistance/skills/Skill.ts +13 -0
- package/front_end/models/ai_assistance/skills/SkillRegistry.ts +10 -0
- package/front_end/models/ai_assistance/skills/styling.md +6 -0
- package/front_end/models/bindings/CompilerScriptMapping.ts +12 -4
- package/front_end/models/breakpoints/BreakpointManager.ts +54 -2
- package/front_end/models/greendev/Prototypes.ts +0 -7
- package/front_end/models/heap_snapshot/HeapSnapshotModel.ts +20 -0
- package/front_end/models/heap_snapshot/HeapSnapshotProxy.ts +5 -0
- package/front_end/models/issues_manager/EmailVerificationRequestIssue.ts +293 -0
- package/front_end/models/issues_manager/IssuesManager.ts +5 -0
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestDnsFetchFailed.md +1 -0
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestDnsInvalidRecord.md +1 -0
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestInvalidEmail.md +1 -0
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestKeyBindingSigningFailed.md +1 -0
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestRpOriginIsOpaque.md +1 -0
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestTokenHttpNotFound.md +1 -0
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestTokenInvalidContentType.md +1 -0
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestTokenInvalidResponse.md +1 -0
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestTokenInvalidSdJwt.md +1 -0
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestTokenMalformedSdJwt.md +1 -0
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestTokenNoResponse.md +1 -0
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestUserLoggedOut.md +1 -0
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestWellKnownAccountsEndpointCrossOrigin.md +1 -0
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestWellKnownHttpNotFound.md +1 -0
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestWellKnownInvalidContentType.md +1 -0
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestWellKnownInvalidResponse.md +1 -0
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestWellKnownIssuanceEndpointCrossOrigin.md +1 -0
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestWellKnownListEmpty.md +1 -0
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestWellKnownMissingAccountsEndpoint.md +1 -0
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestWellKnownMissingIssuanceEndpoint.md +1 -0
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestWellKnownNoResponse.md +1 -0
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestWellKnownUnsupportedSigningAlgorithm.md +1 -0
- package/front_end/models/issues_manager/issues_manager.ts +2 -0
- package/front_end/models/javascript_metadata/NativeFunctions.js +1748 -1739
- package/front_end/models/live-metrics/web-vitals-injected/web-vitals-injected.ts +1 -1
- package/front_end/models/stack_trace/DetailedErrorStackParser.ts +9 -1
- package/front_end/models/stack_trace/StackTraceImpl.ts +29 -9
- package/front_end/models/stack_trace/StackTraceModel.ts +23 -11
- package/front_end/models/stack_trace/Trie.ts +11 -1
- package/front_end/models/trace/extras/TraceTree.ts +20 -1
- package/front_end/models/trace/insights/Common.ts +9 -0
- package/front_end/models/trace/lantern/core/NetworkAnalyzer.ts +21 -25
- package/front_end/panels/ai_assistance/AiAssistancePanel.ts +19 -75
- package/front_end/panels/ai_assistance/components/AccessibilityAgentMarkdownRenderer.ts +10 -3
- package/front_end/panels/ai_assistance/components/ChatMessage.ts +148 -2
- package/front_end/panels/ai_assistance/components/PerformanceAgentMarkdownRenderer.ts +2 -3
- package/front_end/panels/ai_assistance/components/chatMessage.css +27 -0
- package/front_end/panels/application/CookieItemsView.ts +24 -0
- package/front_end/panels/application/DOMStorageItemsView.ts +9 -4
- package/front_end/panels/application/preloading/components/PreloadingString.ts +6 -0
- package/front_end/panels/application/preloading/components/UsedPreloadingView.ts +4 -4
- package/front_end/panels/console/ConsoleViewMessage.ts +13 -102
- package/front_end/panels/elements/StandaloneStylesContainer.ts +10 -0
- package/front_end/panels/elements/StylePropertiesSection.ts +6 -2
- package/front_end/panels/elements/StylePropertyTreeElement.ts +30 -1
- package/front_end/panels/elements/StylesContainer.ts +3 -0
- package/front_end/panels/elements/StylesSidebarPane.ts +54 -4
- package/front_end/panels/elements/elements-meta.ts +14 -0
- package/front_end/panels/layer_viewer/layerDetailsView.css +1 -1
- package/front_end/panels/lighthouse/LighthouseController.ts +1 -1
- package/front_end/panels/lighthouse/LighthouseProtocolService.ts +4 -4
- package/front_end/panels/network/NetworkDataGridNode.ts +14 -0
- package/front_end/panels/network/NetworkLogViewColumns.ts +2 -2
- package/front_end/panels/network/RequestHeadersView.ts +55 -19
- package/front_end/panels/network/networkTimingTable.css +2 -4
- package/front_end/panels/recorder/components/ReplaySection.ts +28 -16
- package/front_end/panels/recorder/converters/LighthouseConverter.snapshot.txt +47 -0
- package/front_end/panels/recorder/converters/PuppeteerConverter.snapshot.txt +49 -0
- package/front_end/panels/recorder/converters/PuppeteerReplayConverter.snapshot.txt +33 -0
- package/front_end/panels/settings/SettingsScreen.ts +1 -2
- package/front_end/panels/sources/BreakpointsView.ts +23 -42
- package/front_end/panels/sources/DebuggerPlugin.ts +12 -5
- package/front_end/panels/sources/ScopeChainSidebarPane.ts +169 -106
- package/front_end/panels/timeline/components/IgnoreListSetting.ts +1 -0
- package/front_end/third_party/chromium/README.chromium +1 -1
- package/front_end/third_party/lighthouse/lighthouse-dt-bundle.js +2 -2
- package/front_end/third_party/marked/README.chromium +3 -6
- package/front_end/third_party/marked/package/README.md +5 -5
- package/front_end/third_party/marked/package/bin/main.js +27 -22
- package/front_end/third_party/marked/package/bin/marked.js +2 -1
- package/front_end/third_party/marked/package/lib/marked.esm.d.ts +346 -256
- package/front_end/third_party/marked/package/lib/marked.esm.js +67 -2698
- package/front_end/third_party/marked/package/lib/marked.esm.js.map +7 -1
- package/front_end/third_party/marked/package/lib/marked.umd.js +69 -2722
- package/front_end/third_party/marked/package/lib/marked.umd.js.map +7 -1
- package/front_end/third_party/marked/package/man/marked.1 +4 -2
- package/front_end/third_party/marked/package/man/marked.1.md +2 -1
- package/front_end/third_party/marked/package/package.json +49 -57
- package/front_end/third_party/puppeteer-replay/README.chromium +2 -2
- package/front_end/third_party/puppeteer-replay/package/lib/cli.js +84 -80
- package/front_end/third_party/puppeteer-replay/package/lib/cli.js.map +1 -1
- package/front_end/third_party/puppeteer-replay/package/lib/extension-test.js +79 -83
- package/front_end/third_party/puppeteer-replay/package/lib/extension-test.js.map +1 -1
- package/front_end/third_party/puppeteer-replay/package/lib/main.d.ts +43 -171
- package/front_end/third_party/puppeteer-replay/package/lib/main.js +51 -206
- package/front_end/third_party/puppeteer-replay/package/lib/main.js.map +1 -1
- package/front_end/third_party/puppeteer-replay/package/package.json +37 -67
- package/front_end/tsconfig.json +1 -1
- package/front_end/ui/components/markdown_view/CodeBlock.ts +17 -6
- package/front_end/ui/components/markdown_view/MarkdownView.ts +39 -3
- package/front_end/ui/components/markdown_view/codeBlock.css +11 -0
- package/front_end/ui/components/markdown_view/markdownView.css +17 -0
- package/front_end/ui/legacy/components/object_ui/ObjectPropertiesSection.ts +0 -79
- package/front_end/ui/legacy/components/object_ui/RemoteObjectPreviewFormatter.ts +16 -4
- package/front_end/ui/visual_logging/KnownContextValues.ts +4 -0
- package/inspector_overlay/testing/InspectorOverlayHelpers.ts +2 -0
- package/mcp/mcp.ts +1 -6
- package/package.json +14 -16
- package/front_end/models/ai_assistance/agents/BreakpointDebuggerAgent.ts +0 -1015
- package/front_end/models/ai_assistance/agents/BreakpointDebuggerAgentOverlay.ts +0 -87
- package/front_end/third_party/marked/package/bin/marked +0 -215
- package/front_end/third_party/marked/package/lib/marked.cjs +0 -2726
- package/front_end/third_party/marked/package/lib/marked.cjs.map +0 -1
- package/front_end/third_party/marked/package/lib/marked.d.cts +0 -670
- package/front_end/third_party/marked/package/lib/marked.js +0 -2780
- package/front_end/third_party/marked/package/man/marked.1.txt +0 -86
- package/front_end/third_party/marked/package/marked.min.js +0 -6
- package/front_end/third_party/marked/package/src/Lexer.js +0 -492
- package/front_end/third_party/marked/package/src/Parser.js +0 -286
- package/front_end/third_party/marked/package/src/Renderer.js +0 -166
- package/front_end/third_party/marked/package/src/Slugger.js +0 -49
- package/front_end/third_party/marked/package/src/TextRenderer.js +0 -42
- package/front_end/third_party/marked/package/src/Tokenizer.js +0 -755
- package/front_end/third_party/marked/package/src/defaults.js +0 -29
- package/front_end/third_party/marked/package/src/helpers.js +0 -249
- package/front_end/third_party/marked/package/src/marked.js +0 -350
- package/front_end/third_party/marked/package/src/rules.js +0 -285
- package/front_end/third_party/puppeteer-replay/package/lib/cjs/main.cjs +0 -2099
- package/front_end/third_party/puppeteer-replay/package/lib/cjs/main.cjs.map +0 -1
- package/front_end/third_party/puppeteer-replay/package/lib/cjs/main.d.cts +0 -686
- package/front_end/third_party/puppeteer-replay/package/lib/cjs/main.d.ts +0 -35
- package/mcp/HostBindings.ts +0 -319
- /package/front_end/third_party/marked/package/{LICENSE.md → LICENSE} +0 -0
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
Copyright 2022 Google LLC
|
|
3
|
-
|
|
4
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
-
you may not use this file except in compliance with the License.
|
|
6
|
-
You may obtain a copy of the License at
|
|
7
|
-
|
|
8
|
-
https://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
-
|
|
10
|
-
Unless required by applicable law or agreed to in writing, software
|
|
11
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
-
See the License for the specific language governing permissions and
|
|
14
|
-
limitations under the License.
|
|
15
|
-
*/
|
|
16
|
-
/**
|
|
17
|
-
* @packageDocumentation
|
|
18
|
-
*/
|
|
19
|
-
export * from './Schema.js';
|
|
20
|
-
export * as Schema from './Schema.js';
|
|
21
|
-
export * from './SchemaUtils.js';
|
|
22
|
-
export { StringifyExtension } from './StringifyExtension.js';
|
|
23
|
-
export { JSONStringifyExtension } from './JSONStringifyExtension.js';
|
|
24
|
-
export { stringify, stringifyStep, parseSourceMap, stripSourceMap, StringifyOptions, SourceMap, } from './stringify.js';
|
|
25
|
-
export { LineWriter } from './LineWriter.js';
|
|
26
|
-
export { RunnerExtension } from './RunnerExtension.js';
|
|
27
|
-
export { createRunner, Runner } from './Runner.js';
|
|
28
|
-
export { PuppeteerRunnerExtension } from './PuppeteerRunnerExtension.js';
|
|
29
|
-
export { PuppeteerRunnerOwningBrowserExtension } from './PuppeteerRunnerExtension.js';
|
|
30
|
-
export { PuppeteerStringifyExtension } from './PuppeteerStringifyExtension.js';
|
|
31
|
-
export { PuppeteerReplayStringifyExtension } from './PuppeteerReplayStringifyExtension.js';
|
|
32
|
-
export { LighthouseStringifyExtension } from './lighthouse/LighthouseStringifyExtension.js';
|
|
33
|
-
export { LighthouseRunnerExtension } from './lighthouse/LighthouseRunnerExtension.js';
|
|
34
|
-
export * from './JSONUtils.js';
|
|
35
|
-
//# sourceMappingURL=main.d.ts.map
|
package/mcp/HostBindings.ts
DELETED
|
@@ -1,319 +0,0 @@
|
|
|
1
|
-
// Copyright 2025 The Chromium Authors
|
|
2
|
-
// Use of this source code is governed by a BSD-style license that can be
|
|
3
|
-
// found in the LICENSE file.
|
|
4
|
-
|
|
5
|
-
import {readFile} from 'node:fs/promises';
|
|
6
|
-
import {URL} from 'node:url';
|
|
7
|
-
|
|
8
|
-
import type * as Common from '../front_end/core/common/common.js';
|
|
9
|
-
import type * as Host from '../front_end/core/host/host.js';
|
|
10
|
-
import {streamWrite} from '../front_end/core/host/ResourceLoader.js';
|
|
11
|
-
|
|
12
|
-
export class McpHostBindings implements Host.InspectorFrontendHostAPI.InspectorFrontendHostAPI {
|
|
13
|
-
declare events: Common.EventTarget.EventTarget<Host.InspectorFrontendHostAPI.EventTypes>;
|
|
14
|
-
|
|
15
|
-
connectAutomaticFileSystem(): void {
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
disconnectAutomaticFileSystem(): void {
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
addFileSystem(): void {
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
loadCompleted(): void {
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
indexPath(): void {
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
setInspectedPageBounds(): void {
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
showCertificateViewer(): void {
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
setWhitelistedShortcuts(): void {
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
setEyeDropperActive(): void {
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
inspectElementCompleted(): void {
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
openInNewTab(): void {
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
openSearchResultsInNewTab(): void {
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
showItemInFolder(): void {
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
removeFileSystem(): void {
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
requestFileSystems(): void {
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
save(): void {
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
append(): void {
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
close(): void {
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
searchInPath(): void {
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
stopIndexing(): void {
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
bringToFront(): void {
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
closeWindow(): void {
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
copyText(): void {
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
inspectedURLChanged(): void {
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
isolatedFileSystem(): null {
|
|
88
|
-
return null;
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
loadNetworkResource(
|
|
92
|
-
urlString: string, _headers: string, streamId: number,
|
|
93
|
-
callback: (arg0: Host.InspectorFrontendHostAPI.LoadNetworkResourceResult) => void): void {
|
|
94
|
-
let url: URL;
|
|
95
|
-
|
|
96
|
-
try {
|
|
97
|
-
url = new URL(urlString);
|
|
98
|
-
} catch {
|
|
99
|
-
callback({
|
|
100
|
-
statusCode: 404,
|
|
101
|
-
urlValid: false,
|
|
102
|
-
});
|
|
103
|
-
return;
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
let contentPromise: Promise<string>;
|
|
107
|
-
if (url.protocol === 'file:') {
|
|
108
|
-
contentPromise = readFile(url, {encoding: 'utf8'});
|
|
109
|
-
} else if (url.protocol === 'http:' || url.protocol === 'https:') {
|
|
110
|
-
// We skip parsing headers. DevTools only sets cache and user agent, which is probably fine to not forward.
|
|
111
|
-
contentPromise = fetch(url).then(response => {
|
|
112
|
-
if (!response.ok) {
|
|
113
|
-
throw new Error('Fetch failed');
|
|
114
|
-
}
|
|
115
|
-
return response.text();
|
|
116
|
-
});
|
|
117
|
-
} else {
|
|
118
|
-
// Unknown protocol.
|
|
119
|
-
callback({
|
|
120
|
-
statusCode: 404,
|
|
121
|
-
urlValid: false,
|
|
122
|
-
});
|
|
123
|
-
return;
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
contentPromise
|
|
127
|
-
.then(content => {
|
|
128
|
-
streamWrite(streamId, content);
|
|
129
|
-
callback({statusCode: 200});
|
|
130
|
-
})
|
|
131
|
-
.catch(() => {
|
|
132
|
-
callback({statusCode: 404});
|
|
133
|
-
});
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
registerPreference(): void {
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
getPreferences(): void {
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
getPreference(): void {
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
setPreference(): void {
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
removePreference(): void {
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
clearPreferences(): void {
|
|
152
|
-
}
|
|
153
|
-
|
|
154
|
-
getSyncInformation(): void {
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
getHostConfig(): void {
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
upgradeDraggedFileSystemPermissions(): void {
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
platform(): string {
|
|
164
|
-
switch (process.platform) {
|
|
165
|
-
case 'darwin':
|
|
166
|
-
return 'mac';
|
|
167
|
-
case 'win32':
|
|
168
|
-
return 'windows';
|
|
169
|
-
default:
|
|
170
|
-
return 'linux';
|
|
171
|
-
}
|
|
172
|
-
}
|
|
173
|
-
|
|
174
|
-
recordCountHistogram(): void {
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
recordEnumeratedHistogram(): void {
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
recordPerformanceHistogram(): void {
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
recordPerformanceHistogramMedium(): void {
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
recordUserMetricsAction(): void {
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
recordNewBadgeUsage(): void {
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
sendMessageToBackend(): void {
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
setDevicesDiscoveryConfig(): void {
|
|
196
|
-
}
|
|
197
|
-
|
|
198
|
-
setDevicesUpdatesEnabled(): void {
|
|
199
|
-
}
|
|
200
|
-
|
|
201
|
-
openRemotePage(): void {
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
openNodeFrontend(): void {
|
|
205
|
-
}
|
|
206
|
-
|
|
207
|
-
setInjectedScriptForOrigin(): void {
|
|
208
|
-
}
|
|
209
|
-
|
|
210
|
-
setIsDocked(): void {
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
showSurvey(): void {
|
|
214
|
-
}
|
|
215
|
-
|
|
216
|
-
canShowSurvey(): void {
|
|
217
|
-
}
|
|
218
|
-
|
|
219
|
-
zoomFactor(): number {
|
|
220
|
-
return 1;
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
zoomIn(): void {
|
|
224
|
-
}
|
|
225
|
-
|
|
226
|
-
zoomOut(): void {
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
resetZoom(): void {
|
|
230
|
-
}
|
|
231
|
-
|
|
232
|
-
showContextMenuAtPoint(): void {
|
|
233
|
-
}
|
|
234
|
-
|
|
235
|
-
reattach(): void {
|
|
236
|
-
}
|
|
237
|
-
|
|
238
|
-
readyForTest(): void {
|
|
239
|
-
}
|
|
240
|
-
|
|
241
|
-
connectionReady(): void {
|
|
242
|
-
}
|
|
243
|
-
|
|
244
|
-
setOpenNewWindowForPopups(): void {
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
isHostedMode(): boolean {
|
|
248
|
-
return true;
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
setAddExtensionCallback(): void {
|
|
252
|
-
}
|
|
253
|
-
|
|
254
|
-
initialTargetId(): Promise<string|null> {
|
|
255
|
-
return Promise.resolve(null);
|
|
256
|
-
}
|
|
257
|
-
|
|
258
|
-
doAidaConversation(
|
|
259
|
-
_request: string, _streamId: number,
|
|
260
|
-
cb: (result: Host.InspectorFrontendHostAPI.DoAidaConversationResult) => void): void {
|
|
261
|
-
cb({
|
|
262
|
-
error: 'Not implemented',
|
|
263
|
-
});
|
|
264
|
-
}
|
|
265
|
-
|
|
266
|
-
registerAidaClientEvent(_request: string, cb: (result: Host.InspectorFrontendHostAPI.AidaClientResult) => void):
|
|
267
|
-
void {
|
|
268
|
-
cb({
|
|
269
|
-
error: 'Not implemented',
|
|
270
|
-
});
|
|
271
|
-
}
|
|
272
|
-
|
|
273
|
-
aidaCodeComplete(_request: string, cb: (result: Host.InspectorFrontendHostAPI.AidaCodeCompleteResult) => void): void {
|
|
274
|
-
cb({
|
|
275
|
-
error: 'Not implemented',
|
|
276
|
-
});
|
|
277
|
-
}
|
|
278
|
-
|
|
279
|
-
dispatchHttpRequest(
|
|
280
|
-
_request: Host.InspectorFrontendHostAPI.DispatchHttpRequestRequest,
|
|
281
|
-
cb: (result: Host.InspectorFrontendHostAPI.DispatchHttpRequestResult) => void): void {
|
|
282
|
-
cb({
|
|
283
|
-
error: 'Not implemented',
|
|
284
|
-
});
|
|
285
|
-
}
|
|
286
|
-
|
|
287
|
-
recordImpression(): void {
|
|
288
|
-
}
|
|
289
|
-
|
|
290
|
-
recordResize(): void {
|
|
291
|
-
}
|
|
292
|
-
|
|
293
|
-
recordClick(): void {
|
|
294
|
-
}
|
|
295
|
-
|
|
296
|
-
recordHover(): void {
|
|
297
|
-
}
|
|
298
|
-
|
|
299
|
-
recordDrag(): void {
|
|
300
|
-
}
|
|
301
|
-
|
|
302
|
-
recordChange(): void {
|
|
303
|
-
}
|
|
304
|
-
|
|
305
|
-
recordKeyDown(): void {
|
|
306
|
-
}
|
|
307
|
-
|
|
308
|
-
recordSettingAccess(): void {
|
|
309
|
-
}
|
|
310
|
-
|
|
311
|
-
recordFunctionCall(): void {
|
|
312
|
-
}
|
|
313
|
-
|
|
314
|
-
setChromeFlag(): void {
|
|
315
|
-
}
|
|
316
|
-
|
|
317
|
-
requestRestart(): void {
|
|
318
|
-
}
|
|
319
|
-
}
|
|
File without changes
|