Skip to content

Commit c563ca0

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/8725496403520874881 [email protected] Bug: none Change-Id: I9ed0ed990956dff0cd7d3b7609430e98ef91cd91 Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/6181770 Bot-Commit: Devtools Autoroller <devtools-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Commit-Queue: Nancy Li <[email protected]>
1 parent 31f399b commit c563ca0

File tree

9 files changed

+70
-14
lines changed

9 files changed

+70
-14
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': '69d69ddf3aa698b171886551a4a672c5af1ad902',
2525

2626
# Keeping track of the last time we rollerd the browser protocol files.
27-
'chromium_browser_protocol_revision' : '63772cb6f24ec8e62cd1e0088fa087699bea258f',
27+
'chromium_browser_protocol_revision' : '623d6c39e745b0364b5e0878f07acda7defaa7b9',
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: 2 additions & 1 deletion
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: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -616,6 +616,7 @@ export const generatedProperties = [
616616
"range",
617617
"reading-flow",
618618
"resize",
619+
"result",
619620
"right",
620621
"rotate",
621622
"row-gap",
@@ -3371,6 +3372,9 @@ export const generatedProperties = [
33713372
],
33723373
"name": "resize"
33733374
},
3375+
{
3376+
"name": "result"
3377+
},
33743378
{
33753379
"keywords": [
33763380
"auto"

front_end/generated/protocol.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15704,6 +15704,16 @@ export namespace Target {
1570415704
port: integer;
1570515705
}
1570615706

15707+
/**
15708+
* The state of the target window.
15709+
*/
15710+
export const enum WindowState {
15711+
Normal = 'normal',
15712+
Minimized = 'minimized',
15713+
Maximized = 'maximized',
15714+
Fullscreen = 'fullscreen',
15715+
}
15716+
1570715717
export interface ActivateTargetRequest {
1570815718
targetId: TargetID;
1570915719
}
@@ -15806,6 +15816,11 @@ export namespace Target {
1580615816
* Frame height in DIP (requires newWindow to be true or headless shell).
1580715817
*/
1580815818
height?: integer;
15819+
/**
15820+
* Frame window state (requires newWindow to be true or headless shell).
15821+
* Default is normal.
15822+
*/
15823+
windowState?: WindowState;
1580915824
/**
1581015825
* The browser context to create the page in.
1581115826
*/

front_end/models/javascript_metadata/NativeFunctions.js

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7439,14 +7439,22 @@ export const NativeFunctions = [
74397439
name: "setExpires",
74407440
signatures: [["expires"]]
74417441
},
7442-
{
7443-
name: "beginLayer",
7444-
signatures: [["?options"]]
7445-
},
74467442
{
74477443
name: "fillTextCluster",
74487444
signatures: [["textCluster","x","y","?options"]]
74497445
},
7446+
{
7447+
name: "transferToGPUTexture",
7448+
signatures: [["options"]]
7449+
},
7450+
{
7451+
name: "CanvasFilter",
7452+
signatures: [["init"]]
7453+
},
7454+
{
7455+
name: "beginLayer",
7456+
signatures: [["?options"]]
7457+
},
74507458
{
74517459
name: "createMesh2DVertexBuffer",
74527460
signatures: [["buffer"]]
@@ -7463,14 +7471,6 @@ export const NativeFunctions = [
74637471
name: "drawMesh",
74647472
signatures: [["vertex_buffer","uv_buffer","index_buffer","image"]]
74657473
},
7466-
{
7467-
name: "transferToGPUTexture",
7468-
signatures: [["options"]]
7469-
},
7470-
{
7471-
name: "CanvasFilter",
7472-
signatures: [["init"]]
7473-
},
74747474
{
74757475
name: "placeElement",
74767476
signatures: [["element","x","y"]]

front_end/ui/visual_logging/KnownContextValues.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2838,6 +2838,7 @@ export const knownContextValues = new Set([
28382838
'responsive',
28392839
'restart-frame',
28402840
'restore-default-shortcuts',
2841+
'result',
28412842
'retained-size',
28422843
'retainedSize',
28432844
'retainers',

third_party/blink/public/devtools_protocol/browser_protocol.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23771,6 +23771,18 @@
2377123771
"type": "integer"
2377223772
}
2377323773
]
23774+
},
23775+
{
23776+
"id": "WindowState",
23777+
"description": "The state of the target window.",
23778+
"experimental": true,
23779+
"type": "string",
23780+
"enum": [
23781+
"normal",
23782+
"minimized",
23783+
"maximized",
23784+
"fullscreen"
23785+
]
2377423786
}
2377523787
],
2377623788
"commands": [
@@ -23947,6 +23959,12 @@
2394723959
"optional": true,
2394823960
"type": "integer"
2394923961
},
23962+
{
23963+
"name": "windowState",
23964+
"description": "Frame window state (requires newWindow to be true or headless shell).\nDefault is normal.",
23965+
"optional": true,
23966+
"$ref": "WindowState"
23967+
},
2395023968
{
2395123969
"name": "browserContextId",
2395223970
"description": "The browser context to create the page in.",

third_party/blink/public/devtools_protocol/browser_protocol.pdl

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11174,6 +11174,14 @@ domain Target
1117411174
string host
1117511175
integer port
1117611176

11177+
# The state of the target window.
11178+
experimental type WindowState extends string
11179+
enum
11180+
normal
11181+
minimized
11182+
maximized
11183+
fullscreen
11184+
1117711185
# Activates (focuses) the target.
1117811186
command activateTarget
1117911187
parameters
@@ -11255,6 +11263,9 @@ domain Target
1125511263
optional integer width
1125611264
# Frame height in DIP (requires newWindow to be true or headless shell).
1125711265
optional integer height
11266+
# Frame window state (requires newWindow to be true or headless shell).
11267+
# Default is normal.
11268+
optional WindowState windowState
1125811269
# The browser context to create the page in.
1125911270
experimental optional Browser.BrowserContextID browserContextId
1126011271
# Whether BeginFrames for this target will be controlled via DevTools (headless shell only,

third_party/blink/renderer/core/css/css_properties.json5

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7655,6 +7655,12 @@
76557655
is_property: false,
76567656
runtime_flag: "ViewTransitionOnNavigation",
76577657
},
7658+
{
7659+
name: "result",
7660+
is_descriptor: true,
7661+
is_property: false,
7662+
runtime_flag: "CSSFunctions",
7663+
},
76587664
{
76597665
name: "position-area",
76607666
property_methods: ["ParseSingleValue", "CSSValueFromComputedStyleInternal"],

0 commit comments

Comments
 (0)