Skip to content

Commit d2c8e6a

Browse files
devtools-ci-autoroll-builderDevtools-frontend LUCI CQ
authored andcommitted
Roll browser-protocol
This roll requires a manual review. See http://go/reviewed-rolls for guidance. In case of failures or errors, reach out to someone from config/owner/COMMON_OWNERS. Roll created at https://cr-buildbucket.appspot.com/build/8723899632635072481 [email protected] Bug: none Change-Id: I68389e4003529fa8535cad46b4677fa601dedf8b Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/6226869 Commit-Queue: Kim-Anh Tran <[email protected]> Reviewed-by: Kim-Anh Tran <[email protected]> Bot-Commit: Devtools Autoroller <devtools-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com>
1 parent 013af71 commit d2c8e6a

File tree

11 files changed

+86
-3
lines changed

11 files changed

+86
-3
lines changed

DEPS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ vars = {
2424
'inspector_protocol_revision': '940abfc668be2591483f7132145593c6a047f3cf',
2525

2626
# Keeping track of the last time we rollerd the browser protocol files.
27-
'chromium_browser_protocol_revision' : '42ebabede41e1f538efa10ed0e2b36e814af9320',
27+
'chromium_browser_protocol_revision' : '649fa7c5bb52d1176c8dfcda03163d2c9bbe8a2a',
2828

2929
'clang_format_url': 'https://chromium.googlesource.com/external/github.com/llvm/llvm-project/clang/tools/clang-format.git',
3030
'clang_format_revision': '37f6e68a107df43b7d7e044fd36a13cbae3413f2',

front_end/generated/InspectorBackendCommands.js

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

front_end/generated/SupportedCSSProperties.js

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -421,6 +421,7 @@ export const generatedProperties = [
421421
"column-count",
422422
"column-fill",
423423
"column-gap",
424+
"column-rule-break",
424425
"column-rule-color",
425426
"column-rule-style",
426427
"column-rule-width",
@@ -1696,6 +1697,15 @@ export const generatedProperties = [
16961697
],
16971698
"name": "column-rule"
16981699
},
1700+
{
1701+
"inherited": false,
1702+
"keywords": [
1703+
"none",
1704+
"spanning-item",
1705+
"intersection"
1706+
],
1707+
"name": "column-rule-break"
1708+
},
16991709
{
17001710
"keywords": [
17011711
"currentcolor"
@@ -4973,6 +4983,13 @@ export const generatedPropertyValues = {
49734983
"normal"
49744984
]
49754985
},
4986+
"column-rule-break": {
4987+
"values": [
4988+
"none",
4989+
"spanning-item",
4990+
"intersection"
4991+
]
4992+
},
49764993
"column-rule-color": {
49774994
"values": [
49784995
"currentcolor"

front_end/generated/protocol-mapping.d.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -989,6 +989,15 @@ export namespace ProtocolMapping {
989989
paramsType: [Protocol.Extensions.LoadUnpackedRequest];
990990
returnType: Protocol.Extensions.LoadUnpackedResponse;
991991
};
992+
/**
993+
* Uninstalls an unpacked extension (others not supported) from the profile.
994+
* Available if the client is connected using the --remote-debugging-pipe flag
995+
* and the --enable-unsafe-extension-debugging.
996+
*/
997+
'Extensions.uninstall': {
998+
paramsType: [Protocol.Extensions.UninstallRequest];
999+
returnType: void;
1000+
};
9921001
/**
9931002
* Gets data from extension storage in the given `storageArea`. If `keys` is
9941003
* specified, these are used to filter the result.

front_end/generated/protocol-proxy-api.d.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -417,6 +417,13 @@ declare namespace ProtocolProxyApi {
417417
*/
418418
invoke_loadUnpacked(params: Protocol.Extensions.LoadUnpackedRequest): Promise<Protocol.Extensions.LoadUnpackedResponse>;
419419

420+
/**
421+
* Uninstalls an unpacked extension (others not supported) from the profile.
422+
* Available if the client is connected using the --remote-debugging-pipe flag
423+
* and the --enable-unsafe-extension-debugging.
424+
*/
425+
invoke_uninstall(params: Protocol.Extensions.UninstallRequest): Promise<Protocol.ProtocolResponseWithError>;
426+
420427
/**
421428
* Gets data from extension storage in the given `storageArea`. If `keys` is
422429
* specified, these are used to filter the result.

front_end/generated/protocol.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1516,6 +1516,13 @@ export namespace Extensions {
15161516
id: string;
15171517
}
15181518

1519+
export interface UninstallRequest {
1520+
/**
1521+
* Extension id.
1522+
*/
1523+
id: string;
1524+
}
1525+
15191526
export interface GetStorageItemsRequest {
15201527
/**
15211528
* ID of extension.

front_end/models/javascript_metadata/NativeFunctions.js

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,12 @@ export const NativeFunctions = [
225225
{
226226
name: "create",
227227
signatures: [["?options"]],
228-
receivers: ["CredentialsContainer","AIRewriterFactory","AISummarizerFactory","AIWriterFactory","AILanguageDetectorFactory","AITranslatorFactory"]
228+
receivers: ["CredentialsContainer","AIRewriterFactory","AISummarizerFactory","AIWriterFactory","AILanguageDetectorFactory"]
229+
},
230+
{
231+
name: "create",
232+
signatures: [["options"]],
233+
receivers: ["AITranslatorFactory"]
229234
},
230235
{
231236
name: "defineProperty",
@@ -2406,7 +2411,13 @@ export const NativeFunctions = [
24062411
},
24072412
{
24082413
name: "startViewTransition",
2409-
signatures: [["?callbackOptions"],["update"],["opts"]]
2414+
signatures: [["?callbackOptions"],["update"],["opts"]],
2415+
receivers: ["Document"]
2416+
},
2417+
{
2418+
name: "startViewTransition",
2419+
signatures: [["?update"],["opts"]],
2420+
receivers: ["Element"]
24102421
},
24112422
{
24122423
name: "writeln",

front_end/ui/visual_logging/KnownContextValues.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -762,6 +762,7 @@ export const knownContextValues = new Set([
762762
'column-fill',
763763
'column-gap',
764764
'column-rule',
765+
'column-rule-break',
765766
'column-rule-color',
766767
'column-rule-style',
767768
'column-rule-width',

third_party/blink/public/devtools_protocol/browser_protocol.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2288,6 +2288,17 @@
22882288
}
22892289
]
22902290
},
2291+
{
2292+
"name": "uninstall",
2293+
"description": "Uninstalls an unpacked extension (others not supported) from the profile.\nAvailable if the client is connected using the --remote-debugging-pipe flag\nand the --enable-unsafe-extension-debugging.",
2294+
"parameters": [
2295+
{
2296+
"name": "id",
2297+
"description": "Extension id.",
2298+
"type": "string"
2299+
}
2300+
]
2301+
},
22912302
{
22922303
"name": "getStorageItems",
22932304
"description": "Gets data from extension storage in the given `storageArea`. If `keys` is\nspecified, these are used to filter the result.",

third_party/blink/public/devtools_protocol/browser_protocol.pdl

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1171,6 +1171,13 @@ experimental domain Extensions
11711171
returns
11721172
# Extension id.
11731173
string id
1174+
# Uninstalls an unpacked extension (others not supported) from the profile.
1175+
# Available if the client is connected using the --remote-debugging-pipe flag
1176+
# and the --enable-unsafe-extension-debugging.
1177+
command uninstall
1178+
parameters
1179+
# Extension id.
1180+
string id
11741181
# Gets data from extension storage in the given `storageArea`. If `keys` is
11751182
# specified, these are used to filter the result.
11761183
command getStorageItems

0 commit comments

Comments
 (0)