Skip to content

Commit 716e2c6

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/8732744161711883905 [email protected] Bug: none Change-Id: I49bccdb7a03e763dff691954d64309703df1d562 Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/5974135 Reviewed-by: Ergün Erdoğmuş <[email protected]> Commit-Queue: Ergün Erdoğmuş <[email protected]> Bot-Commit: Devtools Autoroller <devtools-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com>
1 parent 7cdaac7 commit 716e2c6

File tree

6 files changed

+60
-6
lines changed

6 files changed

+60
-6
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': 'ccf6613682a24413db28656da6f9c52948331bad',
2525

2626
# Keeping track of the last time we rollerd the browser protocol files.
27-
'chromium_browser_protocol_revision' : 'a1cb6cb69119adbaf9ee66c343a6074bb9fe1335',
27+
'chromium_browser_protocol_revision' : '8154e0ea114d6ee8d97edfc9ba88f3ea1ead29be',
2828

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

front_end/generated/InspectorBackendCommands.js

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/generated/protocol.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14646,6 +14646,7 @@ export namespace Storage {
1464614646
destinationLimitPriority: SignedInt64AsBase10;
1464714647
aggregatableDebugReportingConfig: AttributionReportingAggregatableDebugReportingConfig;
1464814648
scopesData?: AttributionScopesData;
14649+
maxEventLevelReports: integer;
1464914650
}
1465014651

1465114652
export const enum AttributionReportingSourceRegistrationResult {

front_end/models/javascript_metadata/NativeFunctions.js

Lines changed: 52 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2451,7 +2451,13 @@ export const NativeFunctions = [
24512451
},
24522452
{
24532453
name: "removeAttribute",
2454-
signatures: [["qualifiedName"],["name"]]
2454+
signatures: [["qualifiedName"],["name"]],
2455+
receivers: ["Element"]
2456+
},
2457+
{
2458+
name: "removeAttribute",
2459+
signatures: [["attribute"]],
2460+
receivers: ["Sanitizer"]
24552461
},
24562462
{
24572463
name: "removeAttributeNS",
@@ -2510,7 +2516,13 @@ export const NativeFunctions = [
25102516
},
25112517
{
25122518
name: "setHTMLUnsafe",
2513-
signatures: [["html"]]
2519+
signatures: [["html","?options"]],
2520+
receivers: ["Element"]
2521+
},
2522+
{
2523+
name: "setHTMLUnsafe",
2524+
signatures: [["html"]],
2525+
receivers: ["ShadowRoot"]
25142526
},
25152527
{
25162528
name: "setPointerCapture",
@@ -6472,7 +6484,11 @@ export const NativeFunctions = [
64726484
},
64736485
{
64746486
name: "parseHTMLUnsafe",
6475-
signatures: [["html"]]
6487+
signatures: [["html","?options"]]
6488+
},
6489+
{
6490+
name: "parseHTML",
6491+
signatures: [["html","?options"]]
64766492
},
64776493
{
64786494
name: "caretPositionFromPoint",
@@ -6504,6 +6520,10 @@ export const NativeFunctions = [
65046520
name: "DOMException",
65056521
signatures: [["?message","?name"]]
65066522
},
6523+
{
6524+
name: "setHTML",
6525+
signatures: [["html","?options"]]
6526+
},
65076527
{
65086528
name: "getInnerHTML",
65096529
signatures: [["?options"]]
@@ -7092,6 +7112,34 @@ export const NativeFunctions = [
70927112
name: "ResizeObserver",
70937113
signatures: [["callback"]]
70947114
},
7115+
{
7116+
name: "Sanitizer",
7117+
signatures: [["?config"]]
7118+
},
7119+
{
7120+
name: "allowElement",
7121+
signatures: [["element"]]
7122+
},
7123+
{
7124+
name: "removeElement",
7125+
signatures: [["element"]]
7126+
},
7127+
{
7128+
name: "replaceWithChildrenElement",
7129+
signatures: [["element"]]
7130+
},
7131+
{
7132+
name: "allowAttribute",
7133+
signatures: [["attribute"]]
7134+
},
7135+
{
7136+
name: "setComments",
7137+
signatures: [["allow"]]
7138+
},
7139+
{
7140+
name: "setDataAttributes",
7141+
signatures: [["allow"]]
7142+
},
70957143
{
70967144
name: "postTask",
70977145
signatures: [["callback","?options"]]
@@ -7432,7 +7480,7 @@ export const NativeFunctions = [
74327480
},
74337481
{
74347482
name: "fillTextCluster",
7435-
signatures: [["textCluster","?x","?y"]]
7483+
signatures: [["textCluster","x","y"]]
74367484
},
74377485
{
74387486
name: "placeElement",

third_party/blink/public/devtools_protocol/browser_protocol.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22041,6 +22041,10 @@
2204122041
"name": "scopesData",
2204222042
"optional": true,
2204322043
"$ref": "AttributionScopesData"
22044+
},
22045+
{
22046+
"name": "maxEventLevelReports",
22047+
"type": "integer"
2204422048
}
2204522049
]
2204622050
},

third_party/blink/public/devtools_protocol/browser_protocol.pdl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10715,6 +10715,7 @@ experimental domain Storage
1071510715
SignedInt64AsBase10 destinationLimitPriority
1071610716
AttributionReportingAggregatableDebugReportingConfig aggregatableDebugReportingConfig
1071710717
optional AttributionScopesData scopesData
10718+
integer maxEventLevelReports
1071810719

1071910720
experimental type AttributionReportingSourceRegistrationResult extends string
1072010721
enum

0 commit comments

Comments
 (0)