Skip to content

Commit

Permalink
Round up to nearest tenths place for information gain limit for event…
Browse files Browse the repository at this point in the history
…-level navigations (#1132)

Clarification of information gain limit for event-level navigations.
Information gain has been rounded to the nearest tenths place (11.46 to
11.5) to match the rounding of event-level views
  • Loading branch information
akashnadan authored Jan 3, 2024
1 parent 8cd3d3c commit c39ac5e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion params/chromium-params.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Chromium's implementation assigns the following values:
| [Max attribution reporting origins per rate-limit window][] | [10][max attribution reporting origins per rate-limit window value] |
| [Max attributions per rate-limit window][] | [100][max attributions per rate-limit window value] |
| [Randomized aggregatable report delay][] | [10 minutes][randomized aggregatable report delay value] |
| [Max information gain for navigation sources][] | [11.46 bits][max information gain for navigations value] |
| [Max information gain for navigation sources][] | [11.5 bits][max information gain for navigations value] |
| [Max information gain for event sources][] | [6.5 bits][max information gain for events value] |

[Max pending sources per source origin]: https://wicg.github.io/attribution-reporting-api/#max-pending-sources-per-source-origin
Expand Down
2 changes: 1 addition & 1 deletion ts/src/vendor-specific-values.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export type VendorSpecificValues = {
export const Chromium: Readonly<VendorSpecificValues> = {
maxEventLevelChannelCapacityPerSource: {
[SourceType.event]: 6.5,
[SourceType.navigation]: 11.46173,
[SourceType.navigation]: 11.5,
},
maxSettableEventLevelEpsilon: 14,
}

0 comments on commit c39ac5e

Please sign in to comment.