Skip to content

Commit c7b0419

Browse files
committed
Roll protocol to r1498010
1 parent 71879bd commit c7b0419

File tree

5 files changed

+22
-6
lines changed

5 files changed

+22
-6
lines changed

json/browser_protocol.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2089,7 +2089,8 @@
20892089
"type": "string",
20902090
"enum": [
20912091
"BlockedFrameNavigation",
2092-
"BlockedSubresource"
2092+
"BlockedSubresource",
2093+
"NoisedCanvasReadback"
20932094
]
20942095
},
20952096
{
@@ -2106,6 +2107,12 @@
21062107
"description": "Applies to BlockedFrameNavigation and BlockedSubresource issue types.",
21072108
"optional": true,
21082109
"$ref": "AffectedRequest"
2110+
},
2111+
{
2112+
"name": "sourceCodeLocation",
2113+
"description": "Applies to NoisedCanvasReadback issue type.",
2114+
"optional": true,
2115+
"$ref": "SourceCodeLocation"
21092116
}
21102117
]
21112118
},
@@ -6338,6 +6345,7 @@
63386345
"before",
63396346
"after",
63406347
"picker-icon",
6348+
"interest-hint",
63416349
"marker",
63426350
"backdrop",
63436351
"column",

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "devtools-protocol",
3-
"version": "0.0.1495869",
3+
"version": "0.0.1498010",
44
"description": "The Chrome DevTools Protocol JSON",
55
"repository": "https://github.com/ChromeDevTools/devtools-protocol",
66
"author": "The Chromium Authors",

pdl/browser_protocol.pdl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1096,6 +1096,7 @@ experimental domain Audits
10961096
enum
10971097
BlockedFrameNavigation
10981098
BlockedSubresource
1099+
NoisedCanvasReadback
10991100

11001101
# This issue warns about uses of APIs that may be considered misuse to
11011102
# re-identify users.
@@ -1104,6 +1105,8 @@ experimental domain Audits
11041105
UserReidentificationIssueType type
11051106
# Applies to BlockedFrameNavigation and BlockedSubresource issue types.
11061107
optional AffectedRequest request
1108+
# Applies to NoisedCanvasReadback issue type.
1109+
optional SourceCodeLocation sourceCodeLocation
11071110

11081111
# A unique identifier for the type of issue. Each type may use one of the
11091112
# optional fields in InspectorIssueDetails to convey more specific
@@ -3016,6 +3019,7 @@ domain DOM
30163019
before
30173020
after
30183021
picker-icon
3022+
interest-hint
30193023
marker
30203024
backdrop
30213025
column

types/protocol.d.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3851,7 +3851,7 @@ export namespace Protocol {
38513851
propertyValue?: string;
38523852
}
38533853

3854-
export type UserReidentificationIssueType = ('BlockedFrameNavigation' | 'BlockedSubresource');
3854+
export type UserReidentificationIssueType = ('BlockedFrameNavigation' | 'BlockedSubresource' | 'NoisedCanvasReadback');
38553855

38563856
/**
38573857
* This issue warns about uses of APIs that may be considered misuse to
@@ -3863,6 +3863,10 @@ export namespace Protocol {
38633863
* Applies to BlockedFrameNavigation and BlockedSubresource issue types.
38643864
*/
38653865
request?: AffectedRequest;
3866+
/**
3867+
* Applies to NoisedCanvasReadback issue type.
3868+
*/
3869+
sourceCodeLocation?: SourceCodeLocation;
38663870
}
38673871

38683872
/**
@@ -6568,7 +6572,7 @@ export namespace Protocol {
65686572
/**
65696573
* Pseudo element type.
65706574
*/
6571-
export type PseudoType = ('first-line' | 'first-letter' | 'checkmark' | 'before' | 'after' | 'picker-icon' | 'marker' | 'backdrop' | 'column' | 'selection' | 'search-text' | 'target-text' | 'spelling-error' | 'grammar-error' | 'highlight' | 'first-line-inherited' | 'scroll-marker' | 'scroll-marker-group' | 'scroll-button' | 'scrollbar' | 'scrollbar-thumb' | 'scrollbar-button' | 'scrollbar-track' | 'scrollbar-track-piece' | 'scrollbar-corner' | 'resizer' | 'input-list-button' | 'view-transition' | 'view-transition-group' | 'view-transition-image-pair' | 'view-transition-group-children' | 'view-transition-old' | 'view-transition-new' | 'placeholder' | 'file-selector-button' | 'details-content' | 'picker' | 'permission-icon');
6575+
export type PseudoType = ('first-line' | 'first-letter' | 'checkmark' | 'before' | 'after' | 'picker-icon' | 'interest-hint' | 'marker' | 'backdrop' | 'column' | 'selection' | 'search-text' | 'target-text' | 'spelling-error' | 'grammar-error' | 'highlight' | 'first-line-inherited' | 'scroll-marker' | 'scroll-marker-group' | 'scroll-button' | 'scrollbar' | 'scrollbar-thumb' | 'scrollbar-button' | 'scrollbar-track' | 'scrollbar-track-piece' | 'scrollbar-corner' | 'resizer' | 'input-list-button' | 'view-transition' | 'view-transition-group' | 'view-transition-image-pair' | 'view-transition-group-children' | 'view-transition-old' | 'view-transition-new' | 'placeholder' | 'file-selector-button' | 'details-content' | 'picker' | 'permission-icon');
65726576

65736577
/**
65746578
* Shadow root type.

0 commit comments

Comments
 (0)