Commit b36f41d4 authored by Asanka Herath's avatar Asanka Herath Committed by Chromium LUCI CQ

[privacy_budget] Block kMediaQuery metrics in fieldtrial config.

We are making a corresponding change to the server controlled
experiment. This change brings the waterfall tests closer in character
to what is in the field.

Bug: 1154693
Change-Id: I47ec85a18c195b878ee1b0bc074c99417951a000
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2568624
Commit-Queue: Asanka Herath <asanka@chromium.org>
Reviewed-by: default avatarCaitlin Fischer <caitlinfischer@google.com>
Cr-Commit-Position: refs/heads/master@{#833090}
parent 413a760b
...@@ -226,6 +226,8 @@ IN_PROC_BROWSER_TEST_F(PrivacyBudgetDefaultConfigBrowserTest, Variations) { ...@@ -226,6 +226,8 @@ IN_PROC_BROWSER_TEST_F(PrivacyBudgetDefaultConfigBrowserTest, Variations) {
EXPECT_TRUE(settings->IsActive()); EXPECT_TRUE(settings->IsActive());
EXPECT_TRUE(settings->IsTypeAllowed( EXPECT_TRUE(settings->IsTypeAllowed(
blink::IdentifiableSurface::Type::kCanvasReadback)); blink::IdentifiableSurface::Type::kCanvasReadback));
EXPECT_FALSE(
settings->IsTypeAllowed(blink::IdentifiableSurface::Type::kMediaQuery));
} }
#endif #endif
...@@ -3587,11 +3587,12 @@ ...@@ -3587,11 +3587,12 @@
], ],
"experiments": [ "experiments": [
{ {
"name": "G1", "name": "G2_20201202",
"params": { "params": {
"Gen": "1", "BlockedTypes": "28",
"Gen": "2",
"Max": "10", "Max": "10",
"Rho": "1000" "Rho": "100"
}, },
"enable_features": [ "enable_features": [
"IdentifiabilityStudy" "IdentifiabilityStudy"
......
...@@ -17,6 +17,8 @@ namespace blink { ...@@ -17,6 +17,8 @@ namespace blink {
// An identifiable surface. // An identifiable surface.
// //
// See also: ../../../../../docs/privacy_budget/good_identifiable_surface.md
//
// This class intends to be a lightweight wrapper over a simple 64-bit integer. // This class intends to be a lightweight wrapper over a simple 64-bit integer.
// It exhibits the following characteristics: // It exhibits the following characteristics:
// //
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment