Skip to content

Commit 6c24f89

Browse files
devtools-ci-autoroll-builderDevtools-frontend LUCI CQ
devtools-ci-autoroll-builder
authored and
Devtools-frontend LUCI CQ
committed
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/8731962762409982577 [email protected] Bug: none Change-Id: I15f39f8eb97bc5e587e02101f55e3318f72085f5 Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/5999281 Bot-Commit: Devtools Autoroller <devtools-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Commit-Queue: Kim-Anh Tran <[email protected]>
1 parent a70b2d9 commit 6c24f89

File tree

8 files changed

+30
-15
lines changed

8 files changed

+30
-15
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': '8a411ffb163cfea9fe281186daa15e937bc72109',
2525

2626
# Keeping track of the last time we rollerd the browser protocol files.
27-
'chromium_browser_protocol_revision' : 'd4631ac72e5b6fac2dc454ff15a9d162b8c7fc4f',
27+
'chromium_browser_protocol_revision' : 'ad53f6f3af68283efcfe6149dc9ea58aba93bbab',
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/InspectorBackendCommands.js

Lines changed: 2 additions & 2 deletions
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
@@ -420,7 +420,8 @@ export namespace ProtocolMapping {
420420
*/
421421
'Page.javascriptDialogOpening': [Protocol.Page.JavascriptDialogOpeningEvent];
422422
/**
423-
* Fired for top level page lifecycle events such as navigation, load, paint, etc.
423+
* Fired for lifecycle events (navigation, load, paint, etc) in the current
424+
* target (including local frames).
424425
*/
425426
'Page.lifecycleEvent': [Protocol.Page.LifecycleEventEvent];
426427
/**

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2966,7 +2966,8 @@ declare namespace ProtocolProxyApi {
29662966
javascriptDialogOpening(params: Protocol.Page.JavascriptDialogOpeningEvent): void;
29672967

29682968
/**
2969-
* Fired for top level page lifecycle events such as navigation, load, paint, etc.
2969+
* Fired for lifecycle events (navigation, load, paint, etc) in the current
2970+
* target (including local frames).
29702971
*/
29712972
lifecycleEvent(params: Protocol.Page.LifecycleEventEvent): void;
29722973

front_end/generated/protocol.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9064,6 +9064,8 @@ export namespace Network {
90649064
SchemefulSameSiteUnspecifiedTreatedAsLax = 'SchemefulSameSiteUnspecifiedTreatedAsLax',
90659065
SamePartyFromCrossPartyContext = 'SamePartyFromCrossPartyContext',
90669066
NameValuePairExceedsMaxSize = 'NameValuePairExceedsMaxSize',
9067+
PortMismatch = 'PortMismatch',
9068+
SchemeMismatch = 'SchemeMismatch',
90679069
}
90689070

90699071
/**
@@ -13602,7 +13604,8 @@ export namespace Page {
1360213604
}
1360313605

1360413606
/**
13605-
* Fired for top level page lifecycle events such as navigation, load, paint, etc.
13607+
* Fired for lifecycle events (navigation, load, paint, etc) in the current
13608+
* target (including local frames).
1360613609
*/
1360713610
export interface LifecycleEventEvent {
1360813611
/**
@@ -14794,6 +14797,7 @@ export namespace Storage {
1479414797
ExcessiveReportingOrigins = 'excessiveReportingOrigins',
1479514798
NoHistograms = 'noHistograms',
1479614799
InsufficientBudget = 'insufficientBudget',
14800+
InsufficientNamedBudget = 'insufficientNamedBudget',
1479714801
NoMatchingSourceFilterData = 'noMatchingSourceFilterData',
1479814802
NotRegistered = 'notRegistered',
1479914803
ProhibitedByBrowserPolicy = 'prohibitedByBrowserPolicy',

third_party/blink/public/devtools_protocol/browser_protocol.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13565,7 +13565,9 @@
1356513565
"SchemefulSameSiteLax",
1356613566
"SchemefulSameSiteUnspecifiedTreatedAsLax",
1356713567
"SamePartyFromCrossPartyContext",
13568-
"NameValuePairExceedsMaxSize"
13568+
"NameValuePairExceedsMaxSize",
13569+
"PortMismatch",
13570+
"SchemeMismatch"
1356913571
]
1357013572
},
1357113573
{
@@ -20318,7 +20320,7 @@
2031820320
},
2031920321
{
2032020322
"name": "lifecycleEvent",
20321-
"description": "Fired for top level page lifecycle events such as navigation, load, paint, etc.",
20323+
"description": "Fired for lifecycle events (navigation, load, paint, etc) in the current\ntarget (including local frames).",
2032220324
"parameters": [
2032320325
{
2032420326
"name": "frameId",
@@ -22365,6 +22367,7 @@
2236522367
"excessiveReportingOrigins",
2236622368
"noHistograms",
2236722369
"insufficientBudget",
22370+
"insufficientNamedBudget",
2236822371
"noMatchingSourceFilterData",
2236922372
"notRegistered",
2237022373
"prohibitedByBrowserPolicy",

third_party/blink/public/devtools_protocol/browser_protocol.pdl

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6397,6 +6397,10 @@ domain Network
63976397
# The cookie's name/value pair size exceeded the size limit defined in
63986398
# RFC6265bis.
63996399
NameValuePairExceedsMaxSize
6400+
# The cookie's source port value does not match the request origin's port.
6401+
PortMismatch
6402+
# The cookie's source scheme value does not match the request origin's scheme.
6403+
SchemeMismatch
64006404

64016405
# Types of reasons why a cookie should have been blocked by 3PCD but is exempted for the request.
64026406
experimental type CookieExemptionReason extends string
@@ -9397,7 +9401,8 @@ domain Page
93979401
# Default dialog prompt.
93989402
optional string defaultPrompt
93999403

9400-
# Fired for top level page lifecycle events such as navigation, load, paint, etc.
9404+
# Fired for lifecycle events (navigation, load, paint, etc) in the current
9405+
# target (including local frames).
94019406
event lifecycleEvent
94029407
parameters
94039408
# Id of the frame.
@@ -10859,6 +10864,7 @@ experimental domain Storage
1085910864
excessiveReportingOrigins
1086010865
noHistograms
1086110866
insufficientBudget
10867+
insufficientNamedBudget
1086210868
noMatchingSourceFilterData
1086310869
notRegistered
1086410870
prohibitedByBrowserPolicy

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6254,9 +6254,9 @@
62546254
interpolable: true,
62556255
field_group: "*",
62566256
field_template: "external",
6257-
include_paths: ["third_party/blink/renderer/core/style/gap_color_data_list.h"],
6258-
default_value: "GapColorDataList::DefaultGapColorDataList()",
6259-
type_name: "GapColorDataList",
6257+
include_paths: ["third_party/blink/renderer/core/style/gap_data_list.h"],
6258+
default_value: "GapDataList::DefaultGapColorDataList()",
6259+
type_name: "GapDataList",
62606260
keywords: ["currentcolor"],
62616261
typedom_types: ["Keyword"],
62626262
converter: "ConvertGapColorDataList",
@@ -8412,9 +8412,9 @@
84128412
property_methods: ["ParseSingleValue", "ColorIncludingFallback"],
84138413
field_group: "*->visited",
84148414
field_template: "external",
8415-
include_paths: ["third_party/blink/renderer/core/style/gap_color_data_list.h"],
8416-
default_value: "GapColorDataList::DefaultGapColorDataList()",
8417-
type_name: "GapColorDataList",
8415+
include_paths: ["third_party/blink/renderer/core/style/gap_data_list.h"],
8416+
default_value: "GapDataList::DefaultGapColorDataList()",
8417+
type_name: "GapDataList",
84188418
converter: "ConvertGapColorDataList",
84198419
invalidate: ["paint"],
84208420
},

0 commit comments

Comments
 (0)