Skip to content

Commit 70a7a73

Browse files
committed
update chromium revision
1 parent cc9664f commit 70a7a73

File tree

8 files changed

+69
-10
lines changed

8 files changed

+69
-10
lines changed

lib/launcher/revision.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
package launcher
44

55
// RevisionDefault for chromium
6-
const RevisionDefault = 1087031
6+
const RevisionDefault = 1095419
77

88
// RevisionPlaywright for arm linux
9-
const RevisionPlaywright = 1041
9+
const RevisionPlaywright = 1045

lib/proto/audits.go

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -622,6 +622,12 @@ const (
622622

623623
// AuditsGenericIssueErrorTypeFormLabelForNameError enum const
624624
AuditsGenericIssueErrorTypeFormLabelForNameError AuditsGenericIssueErrorType = "FormLabelForNameError"
625+
626+
// AuditsGenericIssueErrorTypeFormDuplicateIDForInputError enum const
627+
AuditsGenericIssueErrorTypeFormDuplicateIDForInputError AuditsGenericIssueErrorType = "FormDuplicateIdForInputError"
628+
629+
// AuditsGenericIssueErrorTypeFormInputWithNoLabelError enum const
630+
AuditsGenericIssueErrorTypeFormInputWithNoLabelError AuditsGenericIssueErrorType = "FormInputWithNoLabelError"
625631
)
626632

627633
// AuditsGenericIssueDetails Depending on the concrete errorType, different properties are set.
@@ -719,6 +725,9 @@ const (
719725
// AuditsDeprecationIssueTypeNotificationPermissionRequestedIframe enum const
720726
AuditsDeprecationIssueTypeNotificationPermissionRequestedIframe AuditsDeprecationIssueType = "NotificationPermissionRequestedIframe"
721727

728+
// AuditsDeprecationIssueTypeObsoleteCreateImageBitmapImageOrientationNone enum const
729+
AuditsDeprecationIssueTypeObsoleteCreateImageBitmapImageOrientationNone AuditsDeprecationIssueType = "ObsoleteCreateImageBitmapImageOrientationNone"
730+
722731
// AuditsDeprecationIssueTypeObsoleteWebRtcCipherSuite enum const
723732
AuditsDeprecationIssueTypeObsoleteWebRtcCipherSuite AuditsDeprecationIssueType = "ObsoleteWebRtcCipherSuite"
724733

@@ -861,6 +870,9 @@ const (
861870
// AuditsFederatedAuthRequestIssueReasonWellKnownInvalidResponse enum const
862871
AuditsFederatedAuthRequestIssueReasonWellKnownInvalidResponse AuditsFederatedAuthRequestIssueReason = "WellKnownInvalidResponse"
863872

873+
// AuditsFederatedAuthRequestIssueReasonWellKnownListEmpty enum const
874+
AuditsFederatedAuthRequestIssueReasonWellKnownListEmpty AuditsFederatedAuthRequestIssueReason = "WellKnownListEmpty"
875+
864876
// AuditsFederatedAuthRequestIssueReasonConfigNotInWellKnown enum const
865877
AuditsFederatedAuthRequestIssueReasonConfigNotInWellKnown AuditsFederatedAuthRequestIssueReason = "ConfigNotInWellKnown"
866878

@@ -903,6 +915,9 @@ const (
903915
// AuditsFederatedAuthRequestIssueReasonAccountsInvalidResponse enum const
904916
AuditsFederatedAuthRequestIssueReasonAccountsInvalidResponse AuditsFederatedAuthRequestIssueReason = "AccountsInvalidResponse"
905917

918+
// AuditsFederatedAuthRequestIssueReasonAccountsListEmpty enum const
919+
AuditsFederatedAuthRequestIssueReasonAccountsListEmpty AuditsFederatedAuthRequestIssueReason = "AccountsListEmpty"
920+
906921
// AuditsFederatedAuthRequestIssueReasonIDTokenHTTPNotFound enum const
907922
AuditsFederatedAuthRequestIssueReasonIDTokenHTTPNotFound AuditsFederatedAuthRequestIssueReason = "IdTokenHttpNotFound"
908923

lib/proto/browser.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,9 @@ const (
119119
// BrowserPermissionTypeStorageAccess enum const
120120
BrowserPermissionTypeStorageAccess BrowserPermissionType = "storageAccess"
121121

122+
// BrowserPermissionTypeTopLevelStorageAccess enum const
123+
BrowserPermissionTypeTopLevelStorageAccess BrowserPermissionType = "topLevelStorageAccess"
124+
122125
// BrowserPermissionTypeVideoCapture enum const
123126
BrowserPermissionTypeVideoCapture BrowserPermissionType = "videoCapture"
124127

lib/proto/emulation.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,10 @@ type EmulationUserAgentBrandVersion struct {
105105
// Missing optional values will be filled in by the target with what it would normally use.
106106
type EmulationUserAgentMetadata struct {
107107

108-
// Brands (optional) ...
108+
// Brands (optional) Brands appearing in Sec-CH-UA.
109109
Brands []*EmulationUserAgentBrandVersion `json:"brands,omitempty"`
110110

111-
// FullVersionList (optional) ...
111+
// FullVersionList (optional) Brands appearing in Sec-CH-UA-Full-Version-List.
112112
FullVersionList []*EmulationUserAgentBrandVersion `json:"fullVersionList,omitempty"`
113113

114114
// FullVersion (deprecated) (optional) ...

lib/proto/network.go

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -644,10 +644,10 @@ const (
644644
// are specified in third_party/blink/renderer/core/fetch/trust_token.idl.
645645
type NetworkTrustTokenParams struct {
646646

647-
// Type ...
648-
Type NetworkTrustTokenOperationType `json:"type"`
647+
// Operation ...
648+
Operation NetworkTrustTokenOperationType `json:"operation"`
649649

650-
// RefreshPolicy Only set for "token-redemption" type and determine whether
650+
// RefreshPolicy Only set for "token-redemption" operation and determine whether
651651
// to request a fresh SRR or use a still valid cached SRR.
652652
RefreshPolicy NetworkTrustTokenParamsRefreshPolicy `json:"refreshPolicy"`
653653

@@ -1808,8 +1808,9 @@ func (m NetworkEnable) Call(c Client) error {
18081808
return call(m.ProtoReq(), m, nil, c)
18091809
}
18101810

1811-
// NetworkGetAllCookies Returns all browser cookies. Depending on the backend support, will return detailed cookie
1811+
// NetworkGetAllCookies (deprecated) Returns all browser cookies. Depending on the backend support, will return detailed cookie
18121812
// information in the `cookies` field.
1813+
// Deprecated. Use Storage.getCookies instead.
18131814
type NetworkGetAllCookies struct {
18141815
}
18151816

@@ -1822,7 +1823,7 @@ func (m NetworkGetAllCookies) Call(c Client) (*NetworkGetAllCookiesResult, error
18221823
return &res, call(m.ProtoReq(), m, &res, c)
18231824
}
18241825

1825-
// NetworkGetAllCookiesResult ...
1826+
// NetworkGetAllCookiesResult (deprecated) ...
18261827
type NetworkGetAllCookiesResult struct {
18271828

18281829
// Cookies Array of cookie objects.

lib/proto/page.go

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,9 @@ const (
293293
// PagePermissionsPolicyFeaturePictureInPicture enum const
294294
PagePermissionsPolicyFeaturePictureInPicture PagePermissionsPolicyFeature = "picture-in-picture"
295295

296+
// PagePermissionsPolicyFeaturePrivateAggregation enum const
297+
PagePermissionsPolicyFeaturePrivateAggregation PagePermissionsPolicyFeature = "private-aggregation"
298+
296299
// PagePermissionsPolicyFeaturePublickeyCredentialsGet enum const
297300
PagePermissionsPolicyFeaturePublickeyCredentialsGet PagePermissionsPolicyFeature = "publickey-credentials-get"
298301

@@ -311,6 +314,9 @@ const (
311314
// PagePermissionsPolicyFeatureSharedStorage enum const
312315
PagePermissionsPolicyFeatureSharedStorage PagePermissionsPolicyFeature = "shared-storage"
313316

317+
// PagePermissionsPolicyFeatureSharedStorageSelectURL enum const
318+
PagePermissionsPolicyFeatureSharedStorageSelectURL PagePermissionsPolicyFeature = "shared-storage-select-url"
319+
314320
// PagePermissionsPolicyFeatureSmartCard enum const
315321
PagePermissionsPolicyFeatureSmartCard PagePermissionsPolicyFeature = "smart-card"
316322

@@ -335,6 +341,9 @@ const (
335341
// PagePermissionsPolicyFeatureWebShare enum const
336342
PagePermissionsPolicyFeatureWebShare PagePermissionsPolicyFeature = "web-share"
337343

344+
// PagePermissionsPolicyFeatureWindowManagement enum const
345+
PagePermissionsPolicyFeatureWindowManagement PagePermissionsPolicyFeature = "window-management"
346+
338347
// PagePermissionsPolicyFeatureWindowPlacement enum const
339348
PagePermissionsPolicyFeatureWindowPlacement PagePermissionsPolicyFeature = "window-placement"
340349

@@ -1517,6 +1526,21 @@ const (
15171526

15181527
// PagePrerenderFinalStatusActivationNavigationDestroyedBeforeSuccess enum const
15191528
PagePrerenderFinalStatusActivationNavigationDestroyedBeforeSuccess PagePrerenderFinalStatus = "ActivationNavigationDestroyedBeforeSuccess"
1529+
1530+
// PagePrerenderFinalStatusTabClosedByUserGesture enum const
1531+
PagePrerenderFinalStatusTabClosedByUserGesture PagePrerenderFinalStatus = "TabClosedByUserGesture"
1532+
1533+
// PagePrerenderFinalStatusTabClosedWithoutUserGesture enum const
1534+
PagePrerenderFinalStatusTabClosedWithoutUserGesture PagePrerenderFinalStatus = "TabClosedWithoutUserGesture"
1535+
1536+
// PagePrerenderFinalStatusPrimaryMainFrameRendererProcessCrashed enum const
1537+
PagePrerenderFinalStatusPrimaryMainFrameRendererProcessCrashed PagePrerenderFinalStatus = "PrimaryMainFrameRendererProcessCrashed"
1538+
1539+
// PagePrerenderFinalStatusPrimaryMainFrameRendererProcessKilled enum const
1540+
PagePrerenderFinalStatusPrimaryMainFrameRendererProcessKilled PagePrerenderFinalStatus = "PrimaryMainFrameRendererProcessKilled"
1541+
1542+
// PagePrerenderFinalStatusActivationFramePolicyNotCompatible enum const
1543+
PagePrerenderFinalStatusActivationFramePolicyNotCompatible PagePrerenderFinalStatus = "ActivationFramePolicyNotCompatible"
15201544
)
15211545

15221546
// PageAddScriptToEvaluateOnLoad (deprecated) (experimental) Deprecated, please use addScriptToEvaluateOnNewDocument instead.

lib/proto/runtime.go

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -766,6 +766,14 @@ type RuntimeCallFunctionOn struct {
766766
// ThrowOnSideEffect (experimental) (optional) Whether to throw an exception if side effect cannot be ruled out during evaluation.
767767
ThrowOnSideEffect bool `json:"throwOnSideEffect,omitempty"`
768768

769+
// UniqueContextID (experimental) (optional) An alternative way to specify the execution context to call function on.
770+
// Compared to contextId that may be reused across processes, this is guaranteed to be
771+
// system-unique, so it can be used to prevent accidental function call
772+
// in context different than intended (e.g. as a result of navigation across process
773+
// boundaries).
774+
// This is mutually exclusive with `executionContextId`.
775+
UniqueContextID string `json:"uniqueContextId,omitempty"`
776+
769777
// GenerateWebDriverValue (experimental) (optional) Whether the result should contain `webDriverValue`, serialized according to
770778
// https://w3c.github.io/webdriver-bidi. This is mutually exclusive with `returnByValue`, but
771779
// resulting `objectId` is still provided.
@@ -1480,8 +1488,11 @@ func (evt RuntimeExecutionContextCreated) ProtoEvent() string {
14801488
// RuntimeExecutionContextDestroyed Issued when execution context is destroyed.
14811489
type RuntimeExecutionContextDestroyed struct {
14821490

1483-
// ExecutionContextID Id of the destroyed context
1491+
// ExecutionContextID (deprecated) Id of the destroyed context
14841492
ExecutionContextID RuntimeExecutionContextID `json:"executionContextId"`
1493+
1494+
// ExecutionContextUniqueID (experimental) Unique Id of the destroyed context
1495+
ExecutionContextUniqueID string `json:"executionContextUniqueId"`
14851496
}
14861497

14871498
// ProtoEvent name

lib/proto/web_authn.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,11 @@ type WebAuthnVirtualAuthenticatorOptions struct {
8989
// Defaults to false.
9090
HasMinPinLength bool `json:"hasMinPinLength,omitempty"`
9191

92+
// HasPrf (optional) If set to true, the authenticator will support the prf extension.
93+
// https://w3c.github.io/webauthn/#prf-extension
94+
// Defaults to false.
95+
HasPrf bool `json:"hasPrf,omitempty"`
96+
9297
// AutomaticPresenceSimulation (optional) If set to true, tests of user presence will succeed immediately.
9398
// Otherwise, they will not be resolved. Defaults to true.
9499
AutomaticPresenceSimulation bool `json:"automaticPresenceSimulation,omitempty"`

0 commit comments

Comments
 (0)