Skip to content

Commit c9ee4b3

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/8730241419198605537 [email protected] Bug: none Change-Id: I1817ad7aec785c4d607f63951eac4c7e368adbc9 Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/6048719 Commit-Queue: Jack Franklin <[email protected]> Reviewed-by: Jack Franklin <[email protected]> Bot-Commit: Devtools Autoroller <devtools-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com>
1 parent c146b79 commit c9ee4b3

File tree

7 files changed

+52
-17
lines changed

7 files changed

+52
-17
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': 'f43f7515bcf291ed7413ba70b0c8514f842f9f5d',
2525

2626
# Keeping track of the last time we rollerd the browser protocol files.
27-
'chromium_browser_protocol_revision' : '282edb9d00811b2e81a92bec0c7b1149fcadfdb2',
27+
'chromium_browser_protocol_revision' : '1b9620229a34bbcf0dfb72b6014cc060460d618f',
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/Deprecation.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,10 @@ export const UIStrings = {
218218
* @description A deprecation warning shown in the DevTools Issues tab. The placeholder is always the noun 'SharedArrayBuffer' which refers to a JavaScript construct. 'Extensions' refers to Chrome extensions. The warning is shown when Chrome Extensions attempt to use 'SharedArrayBuffer's under insecure circumstances.
219219
*/
220220
V8SharedArrayBufferConstructedInExtensionWithoutIsolation: "Extensions should opt into cross-origin isolation to continue using `SharedArrayBuffer`. See https://developer.chrome.com/docs/extensions/mv3/cross-origin-isolation/.",
221+
/**
222+
* @description This warning occurs when the website attempts to use the deprecated WebGPU limit `maxInterStageShaderComponents`.
223+
*/
224+
WebGPULimitMaxInterStageShaderComponents: "The WebGPU limit `maxInterStageShaderComponents` is deprecated, instead use the WebGPU limit `maxInterStageShaderVariables`.",
221225
/**
222226
* @description Warning displayed to developers when the Web SQL API is used to let them know this API is deprecated.
223227
*/
@@ -354,6 +358,9 @@ export const DEPRECATIONS_METADATA: Partial<Record<string, DeprecationDescriptor
354358
"V8SharedArrayBufferConstructedInExtensionWithoutIsolation": {
355359
"milestone": 96
356360
},
361+
"WebGPULimitMaxInterStageShaderComponents": {
362+
"chromeStatusFeature": 4853767735083008
363+
},
357364
"WebSQL": {
358365
"chromeStatusFeature": 5134293578285056,
359366
"milestone": 115

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: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1845,35 +1845,41 @@ export namespace Browser {
18451845
}
18461846

18471847
export const enum PermissionType {
1848-
AccessibilityEvents = 'accessibilityEvents',
1848+
Ar = 'ar',
18491849
AudioCapture = 'audioCapture',
1850-
BackgroundSync = 'backgroundSync',
1850+
AutomaticFullscreen = 'automaticFullscreen',
18511851
BackgroundFetch = 'backgroundFetch',
1852+
BackgroundSync = 'backgroundSync',
1853+
CameraPanTiltZoom = 'cameraPanTiltZoom',
18521854
CapturedSurfaceControl = 'capturedSurfaceControl',
18531855
ClipboardReadWrite = 'clipboardReadWrite',
18541856
ClipboardSanitizedWrite = 'clipboardSanitizedWrite',
18551857
DisplayCapture = 'displayCapture',
18561858
DurableStorage = 'durableStorage',
1857-
Flash = 'flash',
18581859
Geolocation = 'geolocation',
1860+
HandTracking = 'handTracking',
18591861
IdleDetection = 'idleDetection',
1862+
KeyboardLock = 'keyboardLock',
18601863
LocalFonts = 'localFonts',
18611864
Midi = 'midi',
18621865
MidiSysex = 'midiSysex',
18631866
Nfc = 'nfc',
18641867
Notifications = 'notifications',
18651868
PaymentHandler = 'paymentHandler',
18661869
PeriodicBackgroundSync = 'periodicBackgroundSync',
1870+
PointerLock = 'pointerLock',
18671871
ProtectedMediaIdentifier = 'protectedMediaIdentifier',
18681872
Sensors = 'sensors',
1869-
StorageAccess = 'storageAccess',
1873+
SmartCard = 'smartCard',
18701874
SpeakerSelection = 'speakerSelection',
1875+
StorageAccess = 'storageAccess',
18711876
TopLevelStorageAccess = 'topLevelStorageAccess',
18721877
VideoCapture = 'videoCapture',
1873-
VideoCapturePanTiltZoom = 'videoCapturePanTiltZoom',
1878+
Vr = 'vr',
18741879
WakeLockScreen = 'wakeLockScreen',
18751880
WakeLockSystem = 'wakeLockSystem',
18761881
WebAppInstallation = 'webAppInstallation',
1882+
WebPrinting = 'webPrinting',
18771883
WindowManagement = 'windowManagement',
18781884
}
18791885

third_party/blink/public/devtools_protocol/browser_protocol.json

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2787,35 +2787,41 @@
27872787
"experimental": true,
27882788
"type": "string",
27892789
"enum": [
2790-
"accessibilityEvents",
2790+
"ar",
27912791
"audioCapture",
2792-
"backgroundSync",
2792+
"automaticFullscreen",
27932793
"backgroundFetch",
2794+
"backgroundSync",
2795+
"cameraPanTiltZoom",
27942796
"capturedSurfaceControl",
27952797
"clipboardReadWrite",
27962798
"clipboardSanitizedWrite",
27972799
"displayCapture",
27982800
"durableStorage",
2799-
"flash",
28002801
"geolocation",
2802+
"handTracking",
28012803
"idleDetection",
2804+
"keyboardLock",
28022805
"localFonts",
28032806
"midi",
28042807
"midiSysex",
28052808
"nfc",
28062809
"notifications",
28072810
"paymentHandler",
28082811
"periodicBackgroundSync",
2812+
"pointerLock",
28092813
"protectedMediaIdentifier",
28102814
"sensors",
2811-
"storageAccess",
2815+
"smartCard",
28122816
"speakerSelection",
2817+
"storageAccess",
28132818
"topLevelStorageAccess",
28142819
"videoCapture",
2815-
"videoCapturePanTiltZoom",
2820+
"vr",
28162821
"wakeLockScreen",
28172822
"wakeLockSystem",
28182823
"webAppInstallation",
2824+
"webPrinting",
28192825
"windowManagement"
28202826
]
28212827
},

third_party/blink/public/devtools_protocol/browser_protocol.pdl

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1393,35 +1393,41 @@ domain Browser
13931393

13941394
experimental type PermissionType extends string
13951395
enum
1396-
accessibilityEvents
1396+
ar
13971397
audioCapture
1398-
backgroundSync
1398+
automaticFullscreen
13991399
backgroundFetch
1400+
backgroundSync
1401+
cameraPanTiltZoom
14001402
capturedSurfaceControl
14011403
clipboardReadWrite
14021404
clipboardSanitizedWrite
14031405
displayCapture
14041406
durableStorage
1405-
flash
14061407
geolocation
1408+
handTracking
14071409
idleDetection
1410+
keyboardLock
14081411
localFonts
14091412
midi
14101413
midiSysex
14111414
nfc
14121415
notifications
14131416
paymentHandler
14141417
periodicBackgroundSync
1418+
pointerLock
14151419
protectedMediaIdentifier
14161420
sensors
1417-
storageAccess
1421+
smartCard
14181422
speakerSelection
1423+
storageAccess
14191424
topLevelStorageAccess
14201425
videoCapture
1421-
videoCapturePanTiltZoom
1426+
vr
14221427
wakeLockScreen
14231428
wakeLockSystem
14241429
webAppInstallation
1430+
webPrinting
14251431
windowManagement
14261432

14271433
experimental type PermissionSetting extends string

third_party/blink/renderer/core/frame/deprecation/deprecation.json5

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -602,6 +602,16 @@
602602
],
603603
milestone: 96,
604604
},
605+
{
606+
name: "WebGPULimitMaxInterStageShaderComponents",
607+
message: "The WebGPU limit `maxInterStageShaderComponents` is deprecated, instead use the WebGPU limit `maxInterStageShaderVariables`.",
608+
translation_note: "This warning occurs when the website attempts to use the deprecated WebGPU limit `maxInterStageShaderComponents`.",
609+
web_features: [
610+
"kMaxInterStageShaderComponentsRequiredLimit",
611+
"kV8GPUSupportedLimits_MaxInterStageShaderComponents_AttributeGetter",
612+
],
613+
chrome_status_feature: 4853767735083008,
614+
},
605615
{
606616
name: "WebSQL",
607617
message: "Web SQL is deprecated. Please use SQLite WebAssembly or Indexed Database",

0 commit comments

Comments
 (0)