Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cu-ara changes #1

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions front_end/generated/InspectorBackendCommands.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions front_end/generated/protocol.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13920,6 +13920,8 @@ export namespace Storage {
aggregationKeys: AttributionReportingAggregationKeysEntry[];
debugKey?: UnsignedInt64AsBase10;
triggerDataMatching: AttributionReportingTriggerDataMatching;
epoch: UnsignedInt64AsBase10;

}

export const enum AttributionReportingSourceRegistrationResult {
Expand Down Expand Up @@ -13958,6 +13960,11 @@ export namespace Storage {
filters: AttributionReportingFilterPair;
}

export interface AttributionReportingAttributionWindow {
epochStart: UnsignedInt64AsBase10;
epochEnd: UnsignedInt64AsBase10;
}

export interface AttributionReportingAggregatableTriggerData {
keyPiece: UnsignedInt128AsBase16;
sourceKeys: string[];
Expand All @@ -13980,6 +13987,11 @@ export namespace Storage {
aggregationCoordinatorOrigin?: string;
sourceRegistrationTimeConfig: AttributionReportingSourceRegistrationTimeConfig;
triggerContextId?: string;
globalEpsilon?: number;
attributionWindow: AttributionReportingAttributionWindow;
aggregatableCapValues: AttributionReportingAggregatableValueEntry[];
attributionLogic: string;
partitioningLogic: string;
}

export const enum AttributionReportingEventLevelResult {
Expand Down
46 changes: 46 additions & 0 deletions third_party/blink/public/devtools_protocol/browser_protocol.json
Original file line number Diff line number Diff line change
Expand Up @@ -20812,6 +20812,10 @@
{
"name": "triggerDataMatching",
"$ref": "AttributionReportingTriggerDataMatching"
},
{
"name": "epoch",
"$ref": "UnsignedInt64AsBase10"
}
]
},
Expand Down Expand Up @@ -20905,6 +20909,21 @@
}
]
},
{
"id": "AttributionReportingAttributionWindow",
"experimental": true,
"type": "object",
"properties": [
{
"name": "epochStart",
"type": "UnsignedInt64AsBase10"
},
{
"name": "epochEnd",
"type": "UnsignedInt64AsBase10"
}
]
},
{
"id": "AttributionReportingAggregatableDedupKey",
"experimental": true,
Expand Down Expand Up @@ -20980,6 +20999,33 @@
"name": "triggerContextId",
"optional": true,
"type": "string"
},
{
"name": "globalEpsilon",
"optional": true,
"type": "number"
},
{
"name": "attributionWindow",
"optional": false,
"$ref": "AttributionReportingAttributionWindow"
},
{
"name": "aggregatableCapValues",
"type": "array",
"items": {
"$ref": "AttributionReportingAggregatableValueEntry"
}
},
{
"name": "attributionLogic",
"optional": false,
"type": "string"
},
{
"name": "partitioningLogic",
"optional": false,
"type": "string"
}
]
},
Expand Down
11 changes: 11 additions & 0 deletions third_party/blink/public/devtools_protocol/browser_protocol.pdl
Original file line number Diff line number Diff line change
Expand Up @@ -10132,6 +10132,7 @@ experimental domain Storage
array of AttributionReportingAggregationKeysEntry aggregationKeys
optional UnsignedInt64AsBase10 debugKey
AttributionReportingTriggerDataMatching triggerDataMatching
UnsignedInt64AsBase10 epoch

experimental type AttributionReportingSourceRegistrationResult extends string
enum
Expand Down Expand Up @@ -10172,6 +10173,11 @@ experimental domain Storage
optional UnsignedInt64AsBase10 dedupKey
AttributionReportingFilterPair filters

experimental type AttributionReportingAttributionWindow extends object
properties
UnsignedInt64AsBase10 epochStart
UnsignedInt64AsBase10 epochEnd

experimental type AttributionReportingAggregatableTriggerData extends object
properties
UnsignedInt128AsBase16 keyPiece
Expand All @@ -10195,6 +10201,11 @@ experimental domain Storage
optional string aggregationCoordinatorOrigin
AttributionReportingSourceRegistrationTimeConfig sourceRegistrationTimeConfig
optional string triggerContextId
optional number globalEpsilon
AttributionReportingAttributionWindow attributionWindow
array of AttributionReportingAggregatableValueEntry aggregatableCapValues
string attributionLogic
string partitioningLogic

experimental type AttributionReportingEventLevelResult extends string
enum
Expand Down