Skip to content

Commit b1a865e

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/8706233223216588289 [email protected] Bug: none Change-Id: I57e062d1e753b02e08d1bab33c623df115fd68e5 Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/6856635 Bot-Commit: Devtools Autoroller <devtools-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Commit-Queue: Eric Leese <[email protected]>
1 parent 6bc3e64 commit b1a865e

File tree

7 files changed

+17
-4
lines changed

7 files changed

+17
-4
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': '07272ab9a30fd555890fda0718f4c2c25931653a',
2525

2626
# Keeping track of the last time we rolled the browser protocol files.
27-
'chromium_browser_protocol_revision' : 'a793fb8a0e2d0e9948c8e02bb5aff6b57123f438',
27+
'chromium_browser_protocol_revision' : 'fcc57b29528453871e79f6b2a76a7126187dc2fb',
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 & 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: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18019,6 +18019,10 @@ export namespace Target {
1801918019
* Frame id of originating window (is only set if target has an opener).
1802018020
*/
1802118021
openerFrameId?: Page.FrameId;
18022+
/**
18023+
* Id of the parent frame, only present for the "iframe" targets.
18024+
*/
18025+
parentFrameId?: Page.FrameId;
1802218026
browserContextId?: Browser.BrowserContextID;
1802318027
/**
1802418028
* Provides additional details for specific target types. For example, for

front_end/models/javascript_metadata/NativeFunctions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8423,7 +8423,7 @@ export const NativeFunctions = [
84238423
signatures: [["id"]]
84248424
},
84258425
{
8426-
name: "printJob",
8426+
name: "submitPrintJob",
84278427
signatures: [["job_name","document","attributes"]]
84288428
},
84298429
{

front_end/third_party/chromium/README.chromium

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Name: Dependencies sourced from the upstream `chromium` repository
22
URL: https://source.chromium.org/chromium/chromium/src/+/main:components/variations/proto/devtools/
33
Version: N/A
4-
Revision: a793fb8a0e2d0e9948c8e02bb5aff6b57123f438
4+
Revision: fcc57b29528453871e79f6b2a76a7126187dc2fb
55
Update Mechanism: Manual (https://crbug.com/428069060)
66
License: BSD-3-Clause
77
License File: LICENSE

third_party/blink/public/devtools_protocol/browser_protocol.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27447,6 +27447,13 @@
2744727447
"optional": true,
2744827448
"$ref": "Page.FrameId"
2744927449
},
27450+
{
27451+
"name": "parentFrameId",
27452+
"description": "Id of the parent frame, only present for the \"iframe\" targets.",
27453+
"experimental": true,
27454+
"optional": true,
27455+
"$ref": "Page.FrameId"
27456+
},
2745027457
{
2745127458
"name": "browserContextId",
2745227459
"experimental": true,

third_party/blink/public/devtools_protocol/domains/Target.pdl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ domain Target
2727
experimental boolean canAccessOpener
2828
# Frame id of originating window (is only set if target has an opener).
2929
experimental optional Page.FrameId openerFrameId
30+
# Id of the parent frame, only present for the "iframe" targets.
31+
experimental optional Page.FrameId parentFrameId
3032
experimental optional Browser.BrowserContextID browserContextId
3133
# Provides additional details for specific target types. For example, for
3234
# the type of "page", this may be set to "prerender".

0 commit comments

Comments
 (0)