Skip to content

Commit 92e68f7

Browse files
AlinaVarkkiDevtools-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/8723050280977619617 [email protected] Bug: none Change-Id: I628c75362939b780cd271911075e48b234bd1eb5 Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/6261576 Reviewed-by: Nikolay Vitkov <[email protected]> Commit-Queue: Alina Varkki <[email protected]> Reviewed-by: Jack Franklin <[email protected]>
1 parent 4de50df commit 92e68f7

File tree

8 files changed

+78
-10
lines changed

8 files changed

+78
-10
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': '940abfc668be2591483f7132145593c6a047f3cf',
2525

2626
# Keeping track of the last time we rollerd the browser protocol files.
27-
'chromium_browser_protocol_revision' : 'a1908010eca2d1349fcd11279e3cd632f1f8c057',
27+
'chromium_browser_protocol_revision' : 'd7b76da7a45732f3d2c9f1302dc986ff0d545f73',
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: 5 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: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1287,6 +1287,22 @@ export namespace Audits {
12871287
requestId?: Network.RequestId;
12881288
}
12891289

1290+
export const enum PartitioningBlobURLInfo {
1291+
BlockedCrossPartitionFetching = 'BlockedCrossPartitionFetching',
1292+
EnforceNoopenerForNavigation = 'EnforceNoopenerForNavigation',
1293+
}
1294+
1295+
export interface PartitioningBlobURLIssueDetails {
1296+
/**
1297+
* The BlobURL that failed to load.
1298+
*/
1299+
url: string;
1300+
/**
1301+
* Additional information about the Partitioning Blob URL issue.
1302+
*/
1303+
partitioningBlobURLInfo: PartitioningBlobURLInfo;
1304+
}
1305+
12901306
export const enum SelectElementAccessibilityIssueReason {
12911307
DisallowedSelectChild = 'DisallowedSelectChild',
12921308
DisallowedOptGroupChild = 'DisallowedOptGroupChild',
@@ -1369,6 +1385,7 @@ export namespace Audits {
13691385
CorsIssue = 'CorsIssue',
13701386
AttributionReportingIssue = 'AttributionReportingIssue',
13711387
QuirksModeIssue = 'QuirksModeIssue',
1388+
PartitioningBlobURLIssue = 'PartitioningBlobURLIssue',
13721389
NavigatorUserAgentIssue = 'NavigatorUserAgentIssue',
13731390
GenericIssue = 'GenericIssue',
13741391
DeprecationIssue = 'DeprecationIssue',
@@ -1399,6 +1416,7 @@ export namespace Audits {
13991416
corsIssueDetails?: CorsIssueDetails;
14001417
attributionReportingIssueDetails?: AttributionReportingIssueDetails;
14011418
quirksModeIssueDetails?: QuirksModeIssueDetails;
1419+
partitioningBlobURLIssueDetails?: PartitioningBlobURLIssueDetails;
14021420
navigatorUserAgentIssueDetails?: NavigatorUserAgentIssueDetails;
14031421
genericIssueDetails?: GenericIssueDetails;
14041422
deprecationIssueDetails?: DeprecationIssueDetails;
@@ -17633,6 +17651,7 @@ export namespace Preload {
1763317651
OtherPrerenderedPageActivated = 'OtherPrerenderedPageActivated',
1763417652
V8OptimizerDisabled = 'V8OptimizerDisabled',
1763517653
PrerenderFailedDuringPrefetch = 'PrerenderFailedDuringPrefetch',
17654+
BrowsingDataRemoved = 'BrowsingDataRemoved',
1763617655
}
1763717656

1763817657
/**

front_end/models/javascript_metadata/NativeFunctions.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8543,11 +8543,11 @@ export const NativeFunctions = [
85438543
signatures: [["context"]]
85448544
},
85458545
{
8546-
name: "onDeviceWebSpeechAvailable",
8546+
name: "availableOnDevice",
85478547
signatures: [["lang"]]
85488548
},
85498549
{
8550-
name: "installOnDeviceSpeechRecognition",
8550+
name: "installOnDevice",
85518551
signatures: [["lang"]]
85528552
},
85538553
{

front_end/panels/application/preloading/components/PreloadingString.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -695,9 +695,8 @@ export function prerenderFailureReason(attempt: SDK.PreloadingModel.PrerenderAtt
695695
// Note that we use switch and exhaustiveness check to prevent to
696696
// forget updating these strings, but allow to handle unknown
697697
// PrerenderFinalStatus at runtime.
698-
return i18n.i18n.lockedString(`Unknown failure reason: ${
699-
attempt.prerenderStatus as
700-
'See https://docs.google.com/document/d/1PnrfowsZMt62PX1EvvTp2Nqs3ji1zrklrAEe1JYbkTk'}`);
698+
// See https://docs.google.com/document/d/1PnrfowsZMt62PX1EvvTp2Nqs3ji1zrklrAEe1JYbkTk'
699+
return i18n.i18n.lockedString(`Unknown failure reason: ${attempt.prerenderStatus as string}`);
701700
}
702701
}
703702

third_party/blink/public/devtools_protocol/browser_protocol.json

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1887,6 +1887,30 @@
18871887
}
18881888
]
18891889
},
1890+
{
1891+
"id": "PartitioningBlobURLInfo",
1892+
"type": "string",
1893+
"enum": [
1894+
"BlockedCrossPartitionFetching",
1895+
"EnforceNoopenerForNavigation"
1896+
]
1897+
},
1898+
{
1899+
"id": "PartitioningBlobURLIssueDetails",
1900+
"type": "object",
1901+
"properties": [
1902+
{
1903+
"name": "url",
1904+
"description": "The BlobURL that failed to load.",
1905+
"type": "string"
1906+
},
1907+
{
1908+
"name": "partitioningBlobURLInfo",
1909+
"description": "Additional information about the Partitioning Blob URL issue.",
1910+
"$ref": "PartitioningBlobURLInfo"
1911+
}
1912+
]
1913+
},
18901914
{
18911915
"id": "SelectElementAccessibilityIssueReason",
18921916
"type": "string",
@@ -1996,6 +2020,7 @@
19962020
"CorsIssue",
19972021
"AttributionReportingIssue",
19982022
"QuirksModeIssue",
2023+
"PartitioningBlobURLIssue",
19992024
"NavigatorUserAgentIssue",
20002025
"GenericIssue",
20012026
"DeprecationIssue",
@@ -2065,6 +2090,11 @@
20652090
"optional": true,
20662091
"$ref": "QuirksModeIssueDetails"
20672092
},
2093+
{
2094+
"name": "partitioningBlobURLIssueDetails",
2095+
"optional": true,
2096+
"$ref": "PartitioningBlobURLIssueDetails"
2097+
},
20682098
{
20692099
"name": "navigatorUserAgentIssueDetails",
20702100
"deprecated": true,
@@ -26673,7 +26703,8 @@
2667326703
"SlowNetwork",
2667426704
"OtherPrerenderedPageActivated",
2667526705
"V8OptimizerDisabled",
26676-
"PrerenderFailedDuringPrefetch"
26706+
"PrerenderFailedDuringPrefetch",
26707+
"BrowsingDataRemoved"
2667726708
]
2667826709
},
2667926710
{

third_party/blink/public/devtools_protocol/browser_protocol.pdl

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -986,6 +986,18 @@ experimental domain Audits
986986
string failureMessage
987987
optional Network.RequestId requestId
988988

989+
type PartitioningBlobURLInfo extends string
990+
enum
991+
BlockedCrossPartitionFetching
992+
EnforceNoopenerForNavigation
993+
994+
type PartitioningBlobURLIssueDetails extends object
995+
properties
996+
# The BlobURL that failed to load.
997+
string url
998+
# Additional information about the Partitioning Blob URL issue.
999+
PartitioningBlobURLInfo partitioningBlobURLInfo
1000+
9891001
type SelectElementAccessibilityIssueReason extends string
9901002
enum
9911003
DisallowedSelectChild
@@ -1049,6 +1061,7 @@ experimental domain Audits
10491061
CorsIssue
10501062
AttributionReportingIssue
10511063
QuirksModeIssue
1064+
PartitioningBlobURLIssue
10521065
# Deprecated
10531066
NavigatorUserAgentIssue
10541067
GenericIssue
@@ -1078,6 +1091,7 @@ experimental domain Audits
10781091
optional CorsIssueDetails corsIssueDetails
10791092
optional AttributionReportingIssueDetails attributionReportingIssueDetails
10801093
optional QuirksModeIssueDetails quirksModeIssueDetails
1094+
optional PartitioningBlobURLIssueDetails partitioningBlobURLIssueDetails
10811095
deprecated optional NavigatorUserAgentIssueDetails navigatorUserAgentIssueDetails
10821096
optional GenericIssueDetails genericIssueDetails
10831097
optional DeprecationIssueDetails deprecationIssueDetails
@@ -12661,6 +12675,7 @@ experimental domain Preload
1266112675
OtherPrerenderedPageActivated
1266212676
V8OptimizerDisabled
1266312677
PrerenderFailedDuringPrefetch
12678+
BrowsingDataRemoved
1266412679

1266512680
# Fired when a preload enabled state is updated.
1266612681
event preloadEnabledStateUpdated

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6454,6 +6454,7 @@
64546454
field_template: "keyword",
64556455
keywords: ["none", "spanning-item", "intersection"],
64566456
default_value: "spanning-item",
6457+
type_name: "RuleBreak",
64576458
typedom_types: ["Keyword"],
64586459
invalidate: ["paint"],
64596460
runtime_flag: "CSSGapDecoration",
@@ -6466,6 +6467,7 @@
64666467
field_template: "keyword",
64676468
keywords: ["none", "spanning-item", "intersection"],
64686469
default_value: "spanning-item",
6470+
type_name: "RuleBreak",
64696471
typedom_types: ["Keyword"],
64706472
invalidate: ["paint"],
64716473
runtime_flag: "CSSGapDecoration",

0 commit comments

Comments
 (0)