Skip to content

Commit 93afbef

Browse files
Samiya CaurDevtools-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/8704840296188249489 [email protected] Bug: none Change-Id: Iadcee7448345962e05180fa10b9a0c0b149b279f Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/6908049 Reviewed-by: Samiya Caur <[email protected]> Commit-Queue: Samiya Caur <[email protected]> Reviewed-by: Alex Rudenko <[email protected]>
1 parent d633293 commit 93afbef

File tree

9 files changed

+47
-30
lines changed

9 files changed

+47
-30
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' : '55807ccfce17118871e1f401f29c40fafcae7863',
27+
'chromium_browser_protocol_revision' : 'af4c4b4a345d0ad4a3f8aa22f873f21587a1a6e3',
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: 3 additions & 3 deletions
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
@@ -1617,6 +1617,8 @@ export namespace Autofill {
16171617
export interface AddressField {
16181618
/**
16191619
* address field name, for example GIVEN_NAME.
1620+
* The full list of supported field names:
1621+
* https://source.chromium.org/chromium/chromium/src/+/main:components/autofill/core/browser/field_types.cc;l=38
16201622
*/
16211623
name: string;
16221624
/**
@@ -1708,9 +1710,13 @@ export namespace Autofill {
17081710
*/
17091711
frameId?: Page.FrameId;
17101712
/**
1711-
* Credit card information to fill out the form. Credit card data is not saved.
1713+
* Credit card information to fill out the form. Credit card data is not saved. Mutually exclusive with `address`.
17121714
*/
1713-
card: CreditCard;
1715+
card?: CreditCard;
1716+
/**
1717+
* Address to fill out the form. Address data is not saved. Mutually exclusive with `card`.
1718+
*/
1719+
address?: Address;
17141720
}
17151721

17161722
export interface SetAddressesRequest {
@@ -14417,9 +14423,9 @@ export namespace Page {
1441714423
IndexedDBEvent = 'IndexedDBEvent',
1441814424
Dummy = 'Dummy',
1441914425
JsNetworkRequestReceivedCacheControlNoStoreResource = 'JsNetworkRequestReceivedCacheControlNoStoreResource',
14420-
WebRTCSticky = 'WebRTCSticky',
14421-
WebTransportSticky = 'WebTransportSticky',
14422-
WebSocketSticky = 'WebSocketSticky',
14426+
WebRTCUsedWithCCNS = 'WebRTCUsedWithCCNS',
14427+
WebTransportUsedWithCCNS = 'WebTransportUsedWithCCNS',
14428+
WebSocketUsedWithCCNS = 'WebSocketUsedWithCCNS',
1442314429
SmartCard = 'SmartCard',
1442414430
LiveMediaStreamTrack = 'LiveMediaStreamTrack',
1442514431
UnloadHandler = 'UnloadHandler',

front_end/panels/application/components/BackForwardCacheStrings.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -535,17 +535,17 @@ const UIStrings = {
535535
cookieDisabled:
536536
'Back/forward cache is disabled because cookies are disabled on a page that uses `Cache-Control: no-store`.',
537537
/**
538-
* @description Description text for not restored reason WebRTCSticky.
538+
* @description Description text for not restored reason WebRTCUsedWithCCNS.
539539
*/
540-
webRTCSticky: 'Back/forward cache is disabled because WebRTC has been used.',
540+
webRTCUsedWithCCNS: 'Back/forward cache is disabled because WebRTC has been used.',
541541
/**
542-
* @description Description text for not restored reason WebTransportSticky.
542+
* @description Description text for not restored reason WebTransportUsedWithCCNS.
543543
*/
544-
webTransportSticky: 'Back/forward cache is disabled because WebTransport has been used.',
544+
webTransportUsedWithCCNS: 'Back/forward cache is disabled because WebTransport has been used.',
545545
/**
546-
* @description Description text for not restored reason WebSocketSticky.
546+
* @description Description text for not restored reason WebSocketUsedWithCCNS.
547547
*/
548-
webSocketSticky: 'Back/forward cache is disabled because WebSocket has been used.',
548+
webSocketUsedWithCCNS: 'Back/forward cache is disabled because WebSocket has been used.',
549549

550550
} as const;
551551

@@ -691,9 +691,9 @@ export const NotRestoredReasonDescription = {
691691
{name: i18nLazyString(UIStrings.jsNetworkRequestReceivedCacheControlNoStoreResource)},
692692
IndexedDBEvent: {name: i18nLazyString(UIStrings.indexedDBEvent)},
693693
CookieDisabled: {name: i18nLazyString(UIStrings.cookieDisabled)},
694-
WebRTCSticky: {name: i18nLazyString(UIStrings.webRTCSticky)},
695-
WebTransportSticky: {name: i18nLazyString(UIStrings.webTransportSticky)},
696-
WebSocketSticky: {name: i18nLazyString(UIStrings.webSocketSticky)},
694+
WebRTCUsedWithCCNS: {name: i18nLazyString(UIStrings.webRTCUsedWithCCNS)},
695+
WebTransportUsedWithCCNS: {name: i18nLazyString(UIStrings.webTransportUsedWithCCNS)},
696+
WebSocketUsedWithCCNS: {name: i18nLazyString(UIStrings.webSocketUsedWithCCNS)},
697697
HTTPAuthRequired: {name: i18n.i18n.lockedLazyString('HTTPAuthRequired')},
698698
CookieFlushed: {name: i18n.i18n.lockedLazyString('CookieFlushed')},
699699
SmartCard: {name: i18n.i18n.lockedLazyString('SmartCard')},

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: 55807ccfce17118871e1f401f29c40fafcae7863
4+
Revision: af4c4b4a345d0ad4a3f8aa22f873f21587a1a6e3
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: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2454,7 +2454,7 @@
24542454
"properties": [
24552455
{
24562456
"name": "name",
2457-
"description": "address field name, for example GIVEN_NAME.",
2457+
"description": "address field name, for example GIVEN_NAME.\nThe full list of supported field names:\nhttps://source.chromium.org/chromium/chromium/src/+/main:components/autofill/core/browser/field_types.cc;l=38",
24582458
"type": "string"
24592459
},
24602460
{
@@ -2602,8 +2602,15 @@
26022602
},
26032603
{
26042604
"name": "card",
2605-
"description": "Credit card information to fill out the form. Credit card data is not saved.",
2605+
"description": "Credit card information to fill out the form. Credit card data is not saved. Mutually exclusive with `address`.",
2606+
"optional": true,
26062607
"$ref": "CreditCard"
2608+
},
2609+
{
2610+
"name": "address",
2611+
"description": "Address to fill out the form. Address data is not saved. Mutually exclusive with `card`.",
2612+
"optional": true,
2613+
"$ref": "Address"
26072614
}
26082615
]
26092616
},
@@ -21729,9 +21736,9 @@
2172921736
"IndexedDBEvent",
2173021737
"Dummy",
2173121738
"JsNetworkRequestReceivedCacheControlNoStoreResource",
21732-
"WebRTCSticky",
21733-
"WebTransportSticky",
21734-
"WebSocketSticky",
21739+
"WebRTCUsedWithCCNS",
21740+
"WebTransportUsedWithCCNS",
21741+
"WebSocketUsedWithCCNS",
2173521742
"SmartCard",
2173621743
"LiveMediaStreamTrack",
2173721744
"UnloadHandler",

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

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ experimental domain Autofill
2222
type AddressField extends object
2323
properties
2424
# address field name, for example GIVEN_NAME.
25+
# The full list of supported field names:
26+
# https://source.chromium.org/chromium/chromium/src/+/main:components/autofill/core/browser/field_types.cc;l=38
2527
string name
2628
# address field value, for example Jon Doe.
2729
string value
@@ -90,8 +92,10 @@ experimental domain Autofill
9092
DOM.BackendNodeId fieldId
9193
# Identifies the frame that field belongs to.
9294
optional Page.FrameId frameId
93-
# Credit card information to fill out the form. Credit card data is not saved.
94-
CreditCard card
95+
# Credit card information to fill out the form. Credit card data is not saved. Mutually exclusive with `address`.
96+
optional CreditCard card
97+
# Address to fill out the form. Address data is not saved. Mutually exclusive with `card`.
98+
optional Address address
9599

96100
# Set addresses so that developers can verify their forms implementation.
97101
command setAddresses

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1600,9 +1600,9 @@ domain Page
16001600
IndexedDBEvent
16011601
Dummy
16021602
JsNetworkRequestReceivedCacheControlNoStoreResource
1603-
WebRTCSticky
1604-
WebTransportSticky
1605-
WebSocketSticky
1603+
WebRTCUsedWithCCNS
1604+
WebTransportUsedWithCCNS
1605+
WebSocketUsedWithCCNS
16061606
SmartCard
16071607
LiveMediaStreamTrack
16081608
UnloadHandler

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7269,7 +7269,7 @@
72697269
valid_for_cue: true,
72707270
valid_for_marker: true,
72717271
valid_for_page_context: true,
7272-
invalidate: ["layout"],
7272+
invalidate: ["reshape"],
72737273
},
72747274
{
72757275
name: "text-wrap-style",

0 commit comments

Comments
 (0)