Skip to content

Commit fe11192

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/8702065762653238897 [email protected] Bug: none Change-Id: I92dff02d9d476b06bae78663d8327b62794ee25e Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/7003920 Reviewed-by: Piotr Paulski <[email protected]> Commit-Queue: Piotr Paulski <[email protected]> Bot-Commit: Devtools Autoroller <devtools-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com>
1 parent 1d390c9 commit fe11192

File tree

7 files changed

+13
-8
lines changed

7 files changed

+13
-8
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': '1b1bcbbe060e8c8cd8704f00f78978c50991b307',
2525

2626
# Keeping track of the last time we rolled the browser protocol files.
27-
'chromium_browser_protocol_revision' : '7e820ee23f1e46a5f03cb6e18b22a5a5120927eb',
27+
'chromium_browser_protocol_revision' : 'a30399d46b7914d6e069850de11a91944acf37b1',
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-mapping.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1238,7 +1238,8 @@ export namespace ProtocolMapping {
12381238
returnType: void;
12391239
};
12401240
/**
1241-
* Grant specific permissions to the given origin and reject all others.
1241+
* Grant specific permissions to the given origin and reject all others. Deprecated. Use
1242+
* setPermission instead.
12421243
*/
12431244
'Browser.grantPermissions': {
12441245
paramsType: [Protocol.Browser.GrantPermissionsRequest];

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -596,7 +596,9 @@ declare namespace ProtocolProxyApi {
596596
invoke_setPermission(params: Protocol.Browser.SetPermissionRequest): Promise<Protocol.ProtocolResponseWithError>;
597597

598598
/**
599-
* Grant specific permissions to the given origin and reject all others.
599+
* Grant specific permissions to the given origin and reject all others. Deprecated. Use
600+
* setPermission instead.
601+
* @deprecated
600602
*/
601603
invoke_grantPermissions(params: Protocol.Browser.GrantPermissionsRequest): Promise<Protocol.ProtocolResponseWithError>;
602604

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: 7e820ee23f1e46a5f03cb6e18b22a5a5120927eb
4+
Revision: a30399d46b7914d6e069850de11a91944acf37b1
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: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3567,8 +3567,9 @@
35673567
},
35683568
{
35693569
"name": "grantPermissions",
3570-
"description": "Grant specific permissions to the given origin and reject all others.",
3570+
"description": "Grant specific permissions to the given origin and reject all others. Deprecated. Use\nsetPermission instead.",
35713571
"experimental": true,
3572+
"deprecated": true,
35723573
"parameters": [
35733574
{
35743575
"name": "permissions",

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,9 @@ domain Browser
119119
# Context to override. When omitted, default browser context is used.
120120
optional BrowserContextID browserContextId
121121

122-
# Grant specific permissions to the given origin and reject all others.
123-
experimental command grantPermissions
122+
# Grant specific permissions to the given origin and reject all others. Deprecated. Use
123+
# setPermission instead.
124+
experimental deprecated command grantPermissions
124125
parameters
125126
array of PermissionType permissions
126127
# Origin the permission applies to, all origins if not specified.

0 commit comments

Comments
 (0)