You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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/8697082927654543585
R=chrome-devtools-waterfall-gardener-emea-oncall@google.com
Bug: none
Change-Id: I57d95c537b295512e43a893dcbd7d3b8c0f7b0e9
Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/7206196
Commit-Queue: Nicholas Roscino <nroscino@chromium.org>
Bot-Commit: Devtools Autoroller <devtools-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com>
Reviewed-by: Nicholas Roscino <nroscino@chromium.org>
Copy file name to clipboardExpand all lines: third_party/blink/public/devtools_protocol/browser_protocol.json
+107-1Lines changed: 107 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2137,6 +2137,86 @@
2137
2137
}
2138
2138
]
2139
2139
},
2140
+
{
2141
+
"id": "PermissionElementIssueType",
2142
+
"type": "string",
2143
+
"enum": [
2144
+
"InvalidType",
2145
+
"FencedFrameDisallowed",
2146
+
"CspFrameAncestorsMissing",
2147
+
"PermissionsPolicyBlocked",
2148
+
"PaddingRightUnsupported",
2149
+
"PaddingBottomUnsupported",
2150
+
"InsetBoxShadowUnsupported",
2151
+
"RequestInProgress",
2152
+
"UntrustedEvent",
2153
+
"RegistrationFailed",
2154
+
"TypeNotSupported",
2155
+
"InvalidTypeActivation",
2156
+
"SecurityChecksFailed",
2157
+
"ActivationDisabled",
2158
+
"GeolocationDeprecated",
2159
+
"InvalidDisplayStyle",
2160
+
"NonOpaqueColor",
2161
+
"LowContrast",
2162
+
"FontSizeTooSmall",
2163
+
"FontSizeTooLarge",
2164
+
"InvalidSizeValue"
2165
+
]
2166
+
},
2167
+
{
2168
+
"id": "PermissionElementIssueDetails",
2169
+
"description": "This issue warns about improper usage of the <permission> element.",
2170
+
"type": "object",
2171
+
"properties": [
2172
+
{
2173
+
"name": "issueType",
2174
+
"$ref": "PermissionElementIssueType"
2175
+
},
2176
+
{
2177
+
"name": "type",
2178
+
"description": "The value of the type attribute.",
2179
+
"optional": true,
2180
+
"type": "string"
2181
+
},
2182
+
{
2183
+
"name": "nodeId",
2184
+
"description": "The node ID of the <permission> element.",
2185
+
"optional": true,
2186
+
"$ref": "DOM.BackendNodeId"
2187
+
},
2188
+
{
2189
+
"name": "isWarning",
2190
+
"description": "True if the issue is a warning, false if it is an error.",
2191
+
"optional": true,
2192
+
"type": "boolean"
2193
+
},
2194
+
{
2195
+
"name": "permissionName",
2196
+
"description": "Fields for message construction:\nUsed for messages that reference a specific permission name",
2197
+
"optional": true,
2198
+
"type": "string"
2199
+
},
2200
+
{
2201
+
"name": "occluderNodeInfo",
2202
+
"description": "Used for messages about occlusion",
2203
+
"optional": true,
2204
+
"type": "string"
2205
+
},
2206
+
{
2207
+
"name": "occluderParentNodeInfo",
2208
+
"description": "Used for messages about occluder's parent",
2209
+
"optional": true,
2210
+
"type": "string"
2211
+
},
2212
+
{
2213
+
"name": "disableReason",
2214
+
"description": "Used for messages about activation disabled reason",
2215
+
"optional": true,
2216
+
"type": "string"
2217
+
}
2218
+
]
2219
+
},
2140
2220
{
2141
2221
"id": "InspectorIssueCode",
2142
2222
"description": "A unique identifier for the type of issue. Each type may use one of the\noptional fields in InspectorIssueDetails to convey more specific\ninformation about the kind of issue.",
@@ -2167,7 +2247,8 @@
2167
2247
"ElementAccessibilityIssue",
2168
2248
"SRIMessageSignatureIssue",
2169
2249
"UnencodedDigestIssue",
2170
-
"UserReidentificationIssue"
2250
+
"UserReidentificationIssue",
2251
+
"PermissionElementIssue"
2171
2252
]
2172
2253
},
2173
2254
{
@@ -2305,6 +2386,11 @@
2305
2386
"name": "userReidentificationIssueDetails",
2306
2387
"optional": true,
2307
2388
"$ref": "UserReidentificationIssueDetails"
2389
+
},
2390
+
{
2391
+
"name": "permissionElementIssueDetails",
2392
+
"optional": true,
2393
+
"$ref": "PermissionElementIssueDetails"
2308
2394
}
2309
2395
]
2310
2396
},
@@ -28225,6 +28311,26 @@
28225
28311
}
28226
28312
]
28227
28313
},
28314
+
{
28315
+
"name": "getDevToolsTarget",
28316
+
"description": "Gets the targetId of the DevTools page target opened for the given target\n(if any).",
28317
+
"experimental": true,
28318
+
"parameters": [
28319
+
{
28320
+
"name": "targetId",
28321
+
"description": "Page or tab target ID.",
28322
+
"$ref": "TargetID"
28323
+
}
28324
+
],
28325
+
"returns": [
28326
+
{
28327
+
"name": "targetId",
28328
+
"description": "The targetId of DevTools page target if exists.",
28329
+
"optional": true,
28330
+
"$ref": "TargetID"
28331
+
}
28332
+
]
28333
+
},
28228
28334
{
28229
28335
"name": "openDevTools",
28230
28336
"description": "Opens a DevTools window for the target.",
0 commit comments