Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(356)

Side by Side Diff: tools/metrics/rappor/rappor.xml

Issue 1921533004: Add a low-frequency RAPPOR configuration, and use it for Safe Browsing and Permissions metrics. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing nits Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ios/chrome/browser/ssl/ios_ssl_blocking_page.mm ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!-- 1 <!--
2 Copyright 2015 The Chromium Authors. All rights reserved. 2 Copyright 2015 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. 4 found in the LICENSE file.
5 --> 5 -->
6 6
7 <rappor-configuration> 7 <rappor-configuration>
8 <!-- 8 <!--
9 This file is used to generate a comprehensive list of Chrome rappor metrics 9 This file is used to generate a comprehensive list of Chrome rappor metrics
10 along with a detailed description for each histogram. See the design doc at 10 along with a detailed description for each histogram. See the design doc at
(...skipping 18 matching lines...) Expand all
29 </noise-level> 29 </noise-level>
30 30
31 <noise-level name="NORMAL_NOISE"> 31 <noise-level name="NORMAL_NOISE">
32 <summary> 32 <summary>
33 The most common amount of noise, suitable for most fields. 33 The most common amount of noise, suitable for most fields.
34 </summary> 34 </summary>
35 <noise-values fake-prob="0.5" fake-one-prob="0.5" one-coin-prob="0.75" 35 <noise-values fake-prob="0.5" fake-one-prob="0.5" one-coin-prob="0.75"
36 zero-coin-prob="0.25"/> 36 zero-coin-prob="0.25"/>
37 </noise-level> 37 </noise-level>
38 38
39 <noise-level name="SPARSE_NOISE">
40 <summary>
41 Reduced noise, suitable for metrics which receive limited reports (less
42 than 500,000 per day) or expect a highly skewed/sparse distribution over
43 a wide set of domains. Approval from the Chrome Privacy and Rappor teams
44 is required to implement a metric using this noise level.
45 </summary>
46 <noise-values fake-prob="0.25" fake-one-prob="0.5" one-coin-prob="0.75"
47 zero-coin-prob="0.25"/>
48 </noise-level>
49
39 </noise-levels> 50 </noise-levels>
40 51
41 <rappor-parameter-types> 52 <rappor-parameter-types>
42 <!-- 53 <!--
43 Parameters that rappor metrics can be collected with. This list should be 54 Parameters that rappor metrics can be collected with. This list should be
44 kept in sync with parameter type definitions in 55 kept in sync with parameter type definitions in
45 components/rappor/rappor_parameters.h. 56 components/rappor/rappor_parameters.h.
46 --> 57 -->
47 58
48 <rappor-parameters name="COARSE_RAPPOR_TYPE"> 59 <rappor-parameters name="COARSE_RAPPOR_TYPE">
49 <summary> 60 <summary>
50 Stricter parameters for metrics collected from a broader population. 61 Stricter parameters for metrics collected from a broader population.
51 </summary> 62 </summary>
52 <parameters num-cohorts="128" bytes="1" hash-functions="2" fake-prob="0.5" 63 <parameters num-cohorts="128" bytes="1" hash-functions="2" fake-prob="0.5"
53 fake-one-prob="0.5" one-coin-prob="0.75" zero-coin-prob="0.25" 64 fake-one-prob="0.5" one-coin-prob="0.75" zero-coin-prob="0.25"
54 reporting-level="COARSE" noise-level="NORMAL_NOISE"/> 65 reporting-level="COARSE" noise-level="NORMAL_NOISE"/>
55 </rappor-parameters> 66 </rappor-parameters>
56 67
57 <rappor-parameters name="ETLD_PLUS_ONE"> 68 <rappor-parameters name="ETLD_PLUS_ONE">
58 <summary> 69 <summary>
59 Deprecated parameters for collecting the domain and registry of a URL from 70 Deprecated parameters for collecting the domain and registry of a URL from
60 UMA opt-in users. Should use UMA_RAPPOR_TYPE instead. 71 UMA opt-in users. Should use UMA_RAPPOR_TYPE instead.
61 </summary> 72 </summary>
62 <parameters num-cohorts="128" bytes="16" hash-functions="2" fake-prob="0.5" 73 <parameters num-cohorts="128" bytes="16" hash-functions="2" fake-prob="0.5"
63 fake-one-prob="0.5" one-coin-prob="0.75" zero-coin-prob="0.25" 74 fake-one-prob="0.5" one-coin-prob="0.75" zero-coin-prob="0.25"
64 reporting-level="FINE" noise-level="NORMAL_NOISE"/> 75 reporting-level="FINE" noise-level="NORMAL_NOISE"/>
65 </rappor-parameters> 76 </rappor-parameters>
66 77
78 <rappor-parameters name="LOW_FREQUENCY_ETLD_PLUS_ONE">
79 <summary>
80 Parameters for collecting the domain and registry of a URL from UMA opt-in
81 users, using SPARSE_NOISE. Intended for sparse/skewed metrics, or low
82 frequency metrics (less than 500,000 reports per day). Explicit approval
83 from the Chrome Privacy and Rappor teams is required to use this type. New
84 metrics should also consider LOW_FREQUENCY_UMA_RAPPOR_TYPE instead.
85 </summary>
86 <parameters num-cohorts="128" bytes="16" hash-functions="2" fake-prob="0.25"
87 fake-one-prob="0.5" one-coin-prob="0.75" zero-coin-prob="0.25"
88 reporting-level="FINE" noise-level="SPARSE_NOISE"/>
89 </rappor-parameters>
90
91 <rappor-parameters name="LOW_FREQUENCY_SAFEBROWSING_RAPPOR_TYPE">
92 <summary>
93 Parameters for metrics related to Safe Browsing, collected from all users
94 with safe browsing enabled, using SPARSE_NOISE. Intended for sparse/skewed
95 metrics, or low frequency metrics (less than 500,000 reports per day).
96 Explicit approval from the Chrome Privacy and Rappor teams is required to
97 use this type.
98 </summary>
99 <parameters num-cohorts="128" bytes="1" hash-functions="2" fake-prob="0.25"
100 fake-one-prob="0.5" one-coin-prob="0.75" zero-coin-prob="0.25"
101 reporting-level="COARSE" noise-level="SPARSE_NOISE"/>
102 </rappor-parameters>
103
104 <rappor-parameters name="LOW_FREQUENCY_UMA_RAPPOR_TYPE">
105 <summary>
106 Parameters suitable for metrics from UMA opt-in users, using SPARSE_NOISE.
107 Intended for sparse/skewed metrics, or low frequency metrics (less than
108 500,000 reports per day). Explicit approval from the Chrome Privacy and
109 Rappor teams is required to use this type.
110 </summary>
111 <parameters num-cohorts="128" bytes="4" hash-functions="2" fake-prob="0.25"
112 fake-one-prob="0.5" one-coin-prob="0.75" zero-coin-prob="0.25"
113 reporting-level="FINE" noise-level="SPARSE_NOISE"/>
114 </rappor-parameters>
115
67 <rappor-parameters name="SAFEBROWSING_RAPPOR_TYPE"> 116 <rappor-parameters name="SAFEBROWSING_RAPPOR_TYPE">
68 <summary> 117 <summary>
69 Parameters for metrics related to Safe Browsing, collected from all user 118 Parameters for metrics related to Safe Browsing, collected from all users
70 with safe browsing enabled. 119 with safe browsing enabled.
71 </summary> 120 </summary>
72 <parameters num-cohorts="128" bytes="1" hash-functions="2" fake-prob="0.5" 121 <parameters num-cohorts="128" bytes="1" hash-functions="2" fake-prob="0.5"
73 fake-one-prob="0.5" one-coin-prob="0.75" zero-coin-prob="0.25" 122 fake-one-prob="0.5" one-coin-prob="0.75" zero-coin-prob="0.25"
74 reporting-level="COARSE" noise-level="NORMAL_NOISE"/> 123 reporting-level="COARSE" noise-level="NORMAL_NOISE"/>
75 </rappor-parameters> 124 </rappor-parameters>
76 125
77 <rappor-parameters name="UMA_RAPPOR_TYPE"> 126 <rappor-parameters name="UMA_RAPPOR_TYPE">
78 <summary> 127 <summary>
79 Parameters suitable for metrics from UMA opt-in users. 128 Parameters suitable for metrics from UMA opt-in users.
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 may not actually run until the users triggers them again after the refresh.) 253 may not actually run until the users triggers them again after the refresh.)
205 </summary> 254 </summary>
206 </rappor-metric> 255 </rappor-metric>
207 256
208 <rappor-metric name="ContentSettings.PermissionActions_AudioCapture.Denied.Url" 257 <rappor-metric name="ContentSettings.PermissionActions_AudioCapture.Denied.Url"
209 type="ETLD_PLUS_ONE"> 258 type="ETLD_PLUS_ONE">
210 <owner>kcarattini@chromium.org</owner> 259 <owner>kcarattini@chromium.org</owner>
211 <owner>miguelg@chromium.org</owner> 260 <owner>miguelg@chromium.org</owner>
212 <owner>tsergeant@chromium.org</owner> 261 <owner>tsergeant@chromium.org</owner>
213 <summary> 262 <summary>
214 The domain for which a AudioCapture permission prompt was Denied. Also 263 **DEPRECATED. Replaced by
215 recorded as a multi-dimensional metric in Permissions.Action.AudioCapture. 264 ContentSettings.PermissionActions_AudioCapture.Denied.Url2 as of M52. The
265 domain for which a AudioCapture permission prompt was Denied.
216 </summary> 266 </summary>
217 </rappor-metric> 267 </rappor-metric>
218 268
269 <rappor-metric
270 name="ContentSettings.PermissionActions_AudioCapture.Denied.Url2"
271 type="LOW_FREQUENCY_ETLD_PLUS_ONE">
272 <owner>dominickn@chromium.org</owner>
273 <owner>kcarattini@chromium.org</owner>
274 <owner>miguelg@chromium.org</owner>
275 <owner>tsergeant@chromium.org</owner>
276 <summary>
277 The domain for which an AudioCapture permission prompt was Denied.
278 </summary>
279 </rappor-metric>
280
219 <rappor-metric 281 <rappor-metric
220 name="ContentSettings.PermissionActions_AudioCapture.Dismissed.Url" 282 name="ContentSettings.PermissionActions_AudioCapture.Dismissed.Url"
221 type="ETLD_PLUS_ONE"> 283 type="ETLD_PLUS_ONE">
222 <owner>kcarattini@chromium.org</owner> 284 <owner>kcarattini@chromium.org</owner>
223 <owner>miguelg@chromium.org</owner> 285 <owner>miguelg@chromium.org</owner>
224 <owner>tsergeant@chromium.org</owner> 286 <owner>tsergeant@chromium.org</owner>
225 <summary> 287 <summary>
226 The domain for which a AudioCapture permission prompt was Dismissed. Also 288 **DEPRECATED. Replaced by
227 recorded as a multi-dimensional metric in Permissions.Action.AudioCapture. 289 ContentSettings.PermissionActions_AudioCapture.Dismissed.Url2 as of M52.
290 The domain for which an AudioCapture permission prompt was Dismissed.
228 </summary> 291 </summary>
229 </rappor-metric> 292 </rappor-metric>
230 293
294 <rappor-metric
295 name="ContentSettings.PermissionActions_AudioCapture.Dismissed.Url2"
296 type="LOW_FREQUENCY_ETLD_PLUS_ONE">
297 <owner>dominickn@chromium.org</owner>
298 <owner>kcarattini@chromium.org</owner>
299 <owner>miguelg@chromium.org</owner>
300 <owner>tsergeant@chromium.org</owner>
301 <summary>
302 The domain for which an AudioCapture permission prompt was Dismissed.
303 </summary>
304 </rappor-metric>
305
231 <rappor-metric 306 <rappor-metric
232 name="ContentSettings.PermissionActions_AudioCapture.Granted.Url" 307 name="ContentSettings.PermissionActions_AudioCapture.Granted.Url"
233 type="ETLD_PLUS_ONE"> 308 type="ETLD_PLUS_ONE">
234 <owner>kcarattini@chromium.org</owner> 309 <owner>kcarattini@chromium.org</owner>
235 <owner>miguelg@chromium.org</owner> 310 <owner>miguelg@chromium.org</owner>
236 <owner>tsergeant@chromium.org</owner> 311 <owner>tsergeant@chromium.org</owner>
237 <summary> 312 <summary>
238 The domain for which a AudioCapture permission prompt was accepted. Also 313 **DEPRECATED. Replaced by
239 recorded as a multi-dimensional metric in Permissions.Action.AudioCapture. 314 ContentSettings.PermissionActions_AudioCapture.Granted.Url2 as of M52. The
315 domain for which an AudioCapture permission prompt was accepted.
240 </summary> 316 </summary>
241 </rappor-metric> 317 </rappor-metric>
242 318
319 <rappor-metric
320 name="ContentSettings.PermissionActions_AudioCapture.Granted.Url2"
321 type="LOW_FREQUENCY_ETLD_PLUS_ONE">
322 <owner>dominickn@chromium.org</owner>
323 <owner>kcarattini@chromium.org</owner>
324 <owner>miguelg@chromium.org</owner>
325 <owner>tsergeant@chromium.org</owner>
326 <summary>
327 The domain for which an AudioCapture permission prompt was accepted.
328 </summary>
329 </rappor-metric>
330
243 <rappor-metric 331 <rappor-metric
244 name="ContentSettings.PermissionActions_AudioCapture.Ignored.Url" 332 name="ContentSettings.PermissionActions_AudioCapture.Ignored.Url"
245 type="ETLD_PLUS_ONE"> 333 type="ETLD_PLUS_ONE">
246 <owner>kcarattini@chromium.org</owner> 334 <owner>kcarattini@chromium.org</owner>
247 <owner>miguelg@chromium.org</owner> 335 <owner>miguelg@chromium.org</owner>
248 <owner>tsergeant@chromium.org</owner> 336 <owner>tsergeant@chromium.org</owner>
249 <summary> 337 <summary>
250 The domain for which a AudioCapture permission prompt was Ignored. Also 338 **DEPRECATED. Replaced by
251 recorded as a multi-dimensional metric in Permissions.Action.AudioCapture. 339 ContentSettings.PermissionActions_AudioCapture.Ignored.Url2 as of M52. The
340 domain for which an AudioCapture permission prompt was Ignored.
252 </summary> 341 </summary>
253 </rappor-metric> 342 </rappor-metric>
254 343
344 <rappor-metric
345 name="ContentSettings.PermissionActions_AudioCapture.Ignored.Url2"
346 type="LOW_FREQUENCY_ETLD_PLUS_ONE">
347 <owner>dominickn@chromium.org</owner>
348 <owner>kcarattini@chromium.org</owner>
349 <owner>miguelg@chromium.org</owner>
350 <owner>tsergeant@chromium.org</owner>
351 <summary>
352 The domain for which an AudioCapture permission prompt was Ignored.
353 </summary>
354 </rappor-metric>
355
255 <rappor-metric 356 <rappor-metric
256 name="ContentSettings.PermissionActions_AudioCapture.Revoked.Url" 357 name="ContentSettings.PermissionActions_AudioCapture.Revoked.Url"
257 type="ETLD_PLUS_ONE"> 358 type="ETLD_PLUS_ONE">
258 <owner>tsergeant@chromium.org</owner> 359 <owner>tsergeant@chromium.org</owner>
259 <summary> 360 <summary>
260 The domain for which an AudioCapture permission was revoked. Also recorded 361 **DEPRECATED. Replaced by
261 as a multi-dimensional metric in Permissions.Action.AudioCapture. Note: This 362 ContentSettings.PermissionActions_AudioCapture.Revoked.Url2 as of M52. The
262 metric is recorded for more revocation actions as of 2016-04-01 (M51). 363 domain for which an AudioCapture permission was revoked. Note: This metric
364 is recorded for more revocation actions as of 2016-04-01 (M51).
263 </summary> 365 </summary>
264 </rappor-metric> 366 </rappor-metric>
265 367
368 <rappor-metric
369 name="ContentSettings.PermissionActions_AudioCapture.Revoked.Url2"
370 type="LOW_FREQUENCY_ETLD_PLUS_ONE">
371 <owner>dominickn@chromium.org</owner>
372 <owner>tsergeant@chromium.org</owner>
373 <summary>
374 The domain for which an AudioCapture permission was revoked.
375 </summary>
376 </rappor-metric>
377
266 <rappor-metric name="ContentSettings.PermissionActions_Camera.Revoked.Url" 378 <rappor-metric name="ContentSettings.PermissionActions_Camera.Revoked.Url"
267 type="ETLD_PLUS_ONE"> 379 type="ETLD_PLUS_ONE">
268 <owner>jialiul@chromium.org</owner> 380 <owner>jialiul@chromium.org</owner>
269 <summary> 381 <summary>
270 **DEPRECATED. Renamed to 382 **DEPRECATED. Renamed to
271 ContentSettings.PermissionActions_VideoCapture.Revoked.Url on 383 ContentSettings.PermissionActions_VideoCapture.Revoked.Url on
272 2016-01-07.** The domain for which a camera permission was revoked. 384 2016-01-07.** The domain for which a camera permission was revoked.
273 </summary> 385 </summary>
274 </rappor-metric> 386 </rappor-metric>
275 387
276 <rappor-metric name="ContentSettings.PermissionActions_Geolocation.Denied.Url" 388 <rappor-metric name="ContentSettings.PermissionActions_Geolocation.Denied.Url"
277 type="ETLD_PLUS_ONE"> 389 type="ETLD_PLUS_ONE">
278 <owner>miguelg@chromium.org</owner> 390 <owner>miguelg@chromium.org</owner>
279 <summary> 391 <summary>
392 **DEPRECATED. Replaced by
393 ContentSettings.PermissionActions_Geolocation.Denied.Url2 as of M52. The
394 domain for which a Geolocation permission prompt was Denied.
395 </summary>
396 </rappor-metric>
397
398 <rappor-metric name="ContentSettings.PermissionActions_Geolocation.Denied.Url2"
399 type="LOW_FREQUENCY_ETLD_PLUS_ONE">
400 <owner>dominickn@chromium.org</owner>
401 <owner>miguelg@chromium.org</owner>
402 <summary>
280 The domain for which a Geolocation permission prompt was Denied. 403 The domain for which a Geolocation permission prompt was Denied.
281 </summary> 404 </summary>
282 </rappor-metric> 405 </rappor-metric>
283 406
284 <rappor-metric 407 <rappor-metric
285 name="ContentSettings.PermissionActions_Geolocation.Dismissed.Url" 408 name="ContentSettings.PermissionActions_Geolocation.Dismissed.Url"
286 type="ETLD_PLUS_ONE"> 409 type="ETLD_PLUS_ONE">
287 <owner>miguelg@chromium.org</owner> 410 <owner>miguelg@chromium.org</owner>
288 <summary> 411 <summary>
412 **DEPRECATED. Replaced by
413 ContentSettings.PermissionActions_Geolocation.Dismissed.Url2 as of M52.
414 The domain for which a Geolocation permission prompt was Dismissed.
415 </summary>
416 </rappor-metric>
417
418 <rappor-metric
419 name="ContentSettings.PermissionActions_Geolocation.Dismissed.Url2"
420 type="LOW_FREQUENCY_ETLD_PLUS_ONE">
421 <owner>dominickn@chromium.org</owner>
422 <owner>miguelg@chromium.org</owner>
423 <summary>
289 The domain for which a Geolocation permission prompt was Dismissed. 424 The domain for which a Geolocation permission prompt was Dismissed.
290 </summary> 425 </summary>
291 </rappor-metric> 426 </rappor-metric>
292 427
293 <rappor-metric name="ContentSettings.PermissionActions_Geolocation.Granted.Url" 428 <rappor-metric name="ContentSettings.PermissionActions_Geolocation.Granted.Url"
294 type="ETLD_PLUS_ONE"> 429 type="ETLD_PLUS_ONE">
295 <owner>miguelg@chromium.org</owner> 430 <owner>miguelg@chromium.org</owner>
296 <summary> 431 <summary>
432 **DEPRECATED. Replaced by
433 ContentSettings.PermissionActions_Geolocation.Granted.Url2 as of M52. The
434 domain for which a Geolocation permission prompt was accepted.
435 </summary>
436 </rappor-metric>
437
438 <rappor-metric
439 name="ContentSettings.PermissionActions_Geolocation.Granted.Url2"
440 type="LOW_FREQUENCY_ETLD_PLUS_ONE">
441 <owner>dominickn@chromium.org</owner>
442 <owner>miguelg@chromium.org</owner>
443 <summary>
297 The domain for which a Geolocation permission prompt was accepted. 444 The domain for which a Geolocation permission prompt was accepted.
298 </summary> 445 </summary>
299 </rappor-metric> 446 </rappor-metric>
300 447
301 <rappor-metric name="ContentSettings.PermissionActions_Geolocation.Ignored.Url" 448 <rappor-metric name="ContentSettings.PermissionActions_Geolocation.Ignored.Url"
302 type="ETLD_PLUS_ONE"> 449 type="ETLD_PLUS_ONE">
303 <owner>miguelg@chromium.org</owner> 450 <owner>miguelg@chromium.org</owner>
304 <summary> 451 <summary>
452 **DEPRECATED. Replaced by
453 ContentSettings.PermissionActions_Geolocation.Ignored.Url2 as of M52. The
454 domain for which a Geolocation permission prompt was Ignored.
455 </summary>
456 </rappor-metric>
457
458 <rappor-metric
459 name="ContentSettings.PermissionActions_Geolocation.Ignored.Url2"
460 type="LOW_FREQUENCY_ETLD_PLUS_ONE">
461 <owner>dominickn@chromium.org</owner>
462 <owner>miguelg@chromium.org</owner>
463 <summary>
305 The domain for which a Geolocation permission prompt was Ignored. 464 The domain for which a Geolocation permission prompt was Ignored.
306 </summary> 465 </summary>
307 </rappor-metric> 466 </rappor-metric>
308 467
309 <rappor-metric name="ContentSettings.PermissionActions_Geolocation.Revoked.Url" 468 <rappor-metric name="ContentSettings.PermissionActions_Geolocation.Revoked.Url"
310 type="ETLD_PLUS_ONE"> 469 type="ETLD_PLUS_ONE">
311 <owner>jialiul@chromium.org</owner> 470 <owner>jialiul@chromium.org</owner>
312 <summary> 471 <summary>
313 The domain for which a Geolocation permission was revoked. Note: This 472 **DEPRECATED. Replaced by
314 metric is recorded for more revocation actions as of 2016-04-01 (M51). 473 ContentSettings.PermissionActions_Geolocation.Revoked.Url2 as of M52. The
474 domain for which a Geolocation permission was revoked. Note: This metric is
475 recorded for more revocation actions as of 2016-04-01 (M51).
315 </summary> 476 </summary>
316 </rappor-metric> 477 </rappor-metric>
317 478
479 <rappor-metric
480 name="ContentSettings.PermissionActions_Geolocation.Revoked.Url2"
481 type="LOW_FREQUENCY_ETLD_PLUS_ONE">
482 <owner>dominickn@chromium.org</owner>
483 <owner>jialiul@chromium.org</owner>
484 <summary>
485 The domain for which a Geolocation permission was revoked.
486 </summary>
487 </rappor-metric>
488
318 <rappor-metric name="ContentSettings.PermissionActions_Mic.Revoked.Url" 489 <rappor-metric name="ContentSettings.PermissionActions_Mic.Revoked.Url"
319 type="ETLD_PLUS_ONE"> 490 type="ETLD_PLUS_ONE">
320 <owner>jialiul@chromium.org</owner> 491 <owner>jialiul@chromium.org</owner>
321 <summary> 492 <summary>
322 **DEPRECATED. Renamed to 493 **DEPRECATED. Renamed to
323 ContentSettings.PermissionActions_AudioCapture.Revoked.Url on 494 ContentSettings.PermissionActions_AudioCapture.Revoked.Url on
324 2016-01-07.** The domain for which a microphone permission was revoked. 495 2016-01-07.** The domain for which a microphone permission was revoked.
325 </summary> 496 </summary>
326 </rappor-metric> 497 </rappor-metric>
327 498
328 <rappor-metric 499 <rappor-metric
329 name="ContentSettings.PermissionActions_Notifications.Denied.Url" 500 name="ContentSettings.PermissionActions_Notifications.Denied.Url"
330 type="ETLD_PLUS_ONE"> 501 type="ETLD_PLUS_ONE">
331 <owner>miguelg@chromium.org</owner> 502 <owner>miguelg@chromium.org</owner>
332 <summary> 503 <summary>
504 **DEPRECATED. Replaced by
505 ContentSettings.PermissionActions_Notifications.Denied.Url2 as of M52. The
506 domain for which a Notification permission prompt was Denied.
507 </summary>
508 </rappor-metric>
509
510 <rappor-metric
511 name="ContentSettings.PermissionActions_Notifications.Denied.Url2"
512 type="LOW_FREQUENCY_ETLD_PLUS_ONE">
513 <owner>dominickn@chromium.org</owner>
514 <owner>jialiul@chromium.org</owner>
515 <summary>
333 The domain for which a Notification permission prompt was Denied. 516 The domain for which a Notification permission prompt was Denied.
334 </summary> 517 </summary>
335 </rappor-metric> 518 </rappor-metric>
336 519
337 <rappor-metric 520 <rappor-metric
338 name="ContentSettings.PermissionActions_Notifications.Dismissed.Url" 521 name="ContentSettings.PermissionActions_Notifications.Dismissed.Url"
339 type="ETLD_PLUS_ONE"> 522 type="ETLD_PLUS_ONE">
340 <owner>miguelg@chromium.org</owner> 523 <owner>miguelg@chromium.org</owner>
341 <summary> 524 <summary>
525 **DEPRECATED. Replaced by
526 ContentSettings.PermissionActions_Notifications.Dismissed.Url2 as of M52.
527 The domain for which a Notification permission prompt was Dismissed.
528 </summary>
529 </rappor-metric>
530
531 <rappor-metric
532 name="ContentSettings.PermissionActions_Notifications.Dismissed.Url2"
533 type="LOW_FREQUENCY_ETLD_PLUS_ONE">
534 <owner>dominickn@chromium.org</owner>
535 <owner>jialiul@chromium.org</owner>
536 <summary>
342 The domain for which a Notification permission prompt was Dismissed. 537 The domain for which a Notification permission prompt was Dismissed.
343 </summary> 538 </summary>
344 </rappor-metric> 539 </rappor-metric>
345 540
346 <rappor-metric 541 <rappor-metric
347 name="ContentSettings.PermissionActions_Notifications.Granted.Url" 542 name="ContentSettings.PermissionActions_Notifications.Granted.Url"
348 type="ETLD_PLUS_ONE"> 543 type="ETLD_PLUS_ONE">
349 <owner>miguelg@chromium.org</owner> 544 <owner>miguelg@chromium.org</owner>
350 <summary> 545 <summary>
546 **DEPRECATED. Replaced by
547 ContentSettings.PermissionActions_Notifications.Granted.Url2 as of M52. The
548 domain for which a Notification permission prompt was accepted.
549 </summary>
550 </rappor-metric>
551
552 <rappor-metric
553 name="ContentSettings.PermissionActions_Notifications.Granted.Url2"
554 type="LOW_FREQUENCY_ETLD_PLUS_ONE">
555 <owner>dominickn@chromium.org</owner>
556 <owner>miguelg@chromium.org</owner>
557 <summary>
351 The domain for which a Notification permission prompt was accepted. 558 The domain for which a Notification permission prompt was accepted.
352 </summary> 559 </summary>
353 </rappor-metric> 560 </rappor-metric>
354 561
355 <rappor-metric 562 <rappor-metric
356 name="ContentSettings.PermissionActions_Notifications.Ignored.Url" 563 name="ContentSettings.PermissionActions_Notifications.Ignored.Url"
357 type="ETLD_PLUS_ONE"> 564 type="ETLD_PLUS_ONE">
358 <owner>miguelg@chromium.org</owner> 565 <owner>miguelg@chromium.org</owner>
359 <summary> 566 <summary>
567 **DEPRECATED. Replaced by
568 ContentSettings.PermissionActions_Notifications.Ignored.Url2 as of M52. The
569 domain for which a Notification permission prompt was Ignored.
570 </summary>
571 </rappor-metric>
572
573 <rappor-metric
574 name="ContentSettings.PermissionActions_Notifications.Ignored.Url2"
575 type="LOW_FREQUENCY_ETLD_PLUS_ONE">
576 <owner>dominickn@chromium.org</owner>
577 <owner>miguelg@chromium.org</owner>
578 <summary>
360 The domain for which a Notification permission prompt was Ignored. 579 The domain for which a Notification permission prompt was Ignored.
361 </summary> 580 </summary>
362 </rappor-metric> 581 </rappor-metric>
363 582
364 <rappor-metric 583 <rappor-metric
365 name="ContentSettings.PermissionActions_Notifications.Revoked.Url" 584 name="ContentSettings.PermissionActions_Notifications.Revoked.Url"
366 type="ETLD_PLUS_ONE"> 585 type="ETLD_PLUS_ONE">
367 <owner>jialiul@chromium.org</owner> 586 <owner>jialiul@chromium.org</owner>
368 <summary> 587 <summary>
369 The domain for which a Notification permission was revoked. Note: This 588 **DEPRECATED. Replaced by
370 metric is recorded for more revocation actions as of 2016-04-01 (M51). 589 ContentSettings.PermissionActions_Notifications.Revoked.Url2 as of M52. The
590 domain for which a Notification permission was revoked. Note: This metric
591 is recorded for more revocation actions as of 2016-04-01 (M51).
371 </summary> 592 </summary>
372 </rappor-metric> 593 </rappor-metric>
373 594
595 <rappor-metric
596 name="ContentSettings.PermissionActions_Notifications.Revoked.Url2"
597 type="LOW_FREQUENCY_ETLD_PLUS_ONE">
598 <owner>dominickn@chromium.org</owner>
599 <owner>jialiul@chromium.org</owner>
600 <summary>
601 The domain for which a Notification permission was revoked.
602 </summary>
603 </rappor-metric>
604
374 <rappor-metric name="ContentSettings.PermissionActions_VideoCapture.Denied.Url" 605 <rappor-metric name="ContentSettings.PermissionActions_VideoCapture.Denied.Url"
375 type="ETLD_PLUS_ONE"> 606 type="ETLD_PLUS_ONE">
376 <owner>kcarattini@chromium.org</owner> 607 <owner>kcarattini@chromium.org</owner>
377 <owner>miguelg@chromium.org</owner> 608 <owner>miguelg@chromium.org</owner>
378 <owner>tsergeant@chromium.org</owner> 609 <owner>tsergeant@chromium.org</owner>
379 <summary> 610 <summary>
380 The domain for which a VideoCapture permission prompt was Denied. Also 611 **DEPRECATED. Replaced by
381 recorded as a multi-dimensional metric in Permissions.Action.VideoCapture. 612 ContentSettings.PermissionActions_VideoCapture.Denied.Url2 as of M52. The
613 domain for which a VideoCapture permission prompt was Denied.
382 </summary> 614 </summary>
383 </rappor-metric> 615 </rappor-metric>
384 616
617 <rappor-metric
618 name="ContentSettings.PermissionActions_VideoCapture.Denied.Url2"
619 type="LOW_FREQUENCY_ETLD_PLUS_ONE">
620 <owner>dominickn@chromium.org</owner>
621 <owner>kcarattini@chromium.org</owner>
622 <owner>miguelg@chromium.org</owner>
623 <owner>tsergeant@chromium.org</owner>
624 <summary>
625 The domain for which a VideoCapture permission prompt was Denied.
626 </summary>
627 </rappor-metric>
628
385 <rappor-metric 629 <rappor-metric
386 name="ContentSettings.PermissionActions_VideoCapture.Dismissed.Url" 630 name="ContentSettings.PermissionActions_VideoCapture.Dismissed.Url"
387 type="ETLD_PLUS_ONE"> 631 type="ETLD_PLUS_ONE">
388 <owner>kcarattini@chromium.org</owner> 632 <owner>kcarattini@chromium.org</owner>
389 <owner>miguelg@chromium.org</owner> 633 <owner>miguelg@chromium.org</owner>
390 <owner>tsergeant@chromium.org</owner> 634 <owner>tsergeant@chromium.org</owner>
391 <summary> 635 <summary>
392 The domain for which a VideoCapture permission prompt was Dismissed. Also 636 **DEPRECATED. Replaced by
393 recorded as a multi-dimensional metric in Permissions.Action.VideoCapture. 637 ContentSettings.PermissionActions_VideoCapture.Dismissed.Url2 as of M52. The
638 domain for which a VideoCapture permission prompt was Dismissed.
394 </summary> 639 </summary>
395 </rappor-metric> 640 </rappor-metric>
396 641
642 <rappor-metric
643 name="ContentSettings.PermissionActions_VideoCapture.Dismissed.Url2"
644 type="LOW_FREQUENCY_ETLD_PLUS_ONE">
645 <owner>dominickn@chromium.org</owner>
646 <owner>kcarattini@chromium.org</owner>
647 <owner>miguelg@chromium.org</owner>
648 <owner>tsergeant@chromium.org</owner>
649 <summary>
650 The domain for which a VideoCapture permission prompt was Dismissed.
651 </summary>
652 </rappor-metric>
653
397 <rappor-metric 654 <rappor-metric
398 name="ContentSettings.PermissionActions_VideoCapture.Granted.Url" 655 name="ContentSettings.PermissionActions_VideoCapture.Granted.Url"
399 type="ETLD_PLUS_ONE"> 656 type="ETLD_PLUS_ONE">
400 <owner>kcarattini@chromium.org</owner> 657 <owner>kcarattini@chromium.org</owner>
401 <owner>miguelg@chromium.org</owner> 658 <owner>miguelg@chromium.org</owner>
402 <owner>tsergeant@chromium.org</owner> 659 <owner>tsergeant@chromium.org</owner>
403 <summary> 660 <summary>
404 The domain for which a VideoCapture permission prompt was accepted. Also 661 **DEPRECATED. Replaced by
405 recorded as a multi-dimensional metric in Permissions.Action.VideoCapture. 662 ContentSettings.PermissionActions_VideoCapture.Granted.Url2 as of M52. The
663 domain for which a VideoCapture permission prompt was accepted.
406 </summary> 664 </summary>
407 </rappor-metric> 665 </rappor-metric>
408 666
667 <rappor-metric
668 name="ContentSettings.PermissionActions_VideoCapture.Granted.Url2"
669 type="LOW_FREQUENCY_ETLD_PLUS_ONE">
670 <owner>dominickn@chromium.org</owner>
671 <owner>kcarattini@chromium.org</owner>
672 <owner>miguelg@chromium.org</owner>
673 <owner>tsergeant@chromium.org</owner>
674 <summary>
675 The domain for which a VideoCapture permission prompt was accepted.
676 </summary>
677 </rappor-metric>
678
409 <rappor-metric 679 <rappor-metric
410 name="ContentSettings.PermissionActions_VideoCapture.Ignored.Url" 680 name="ContentSettings.PermissionActions_VideoCapture.Ignored.Url"
411 type="ETLD_PLUS_ONE"> 681 type="ETLD_PLUS_ONE">
412 <owner>kcarattini@chromium.org</owner> 682 <owner>kcarattini@chromium.org</owner>
413 <owner>miguelg@chromium.org</owner> 683 <owner>miguelg@chromium.org</owner>
414 <owner>tsergeant@chromium.org</owner> 684 <owner>tsergeant@chromium.org</owner>
415 <summary> 685 <summary>
416 The domain for which a VideoCapture permission prompt was Ignored. Also 686 **DEPRECATED. Replaced by
417 recorded as a multi-dimensional metric in Permissions.Action.VideoCapture. 687 ContentSettings.PermissionActions_VideoCapture.Ignored.Url2 as of M52. The
688 domain for which a VideoCapture permission prompt was Ignored.
418 </summary> 689 </summary>
419 </rappor-metric> 690 </rappor-metric>
420 691
692 <rappor-metric
693 name="ContentSettings.PermissionActions_VideoCapture.Ignored.Url2"
694 type="LOW_FREQUENCY_ETLD_PLUS_ONE">
695 <owner>dominickn@chromium.org</owner>
696 <owner>kcarattini@chromium.org</owner>
697 <owner>miguelg@chromium.org</owner>
698 <owner>tsergeant@chromium.org</owner>
699 <summary>
700 The domain for which a VideoCapture permission prompt was Ignored.
701 </summary>
702 </rappor-metric>
703
421 <rappor-metric 704 <rappor-metric
422 name="ContentSettings.PermissionActions_VideoCapture.Revoked.Url" 705 name="ContentSettings.PermissionActions_VideoCapture.Revoked.Url"
423 type="ETLD_PLUS_ONE"> 706 type="ETLD_PLUS_ONE">
424 <owner>tsergeant@chromium.org</owner> 707 <owner>tsergeant@chromium.org</owner>
425 <summary> 708 <summary>
426 The domain for which an VideoCapture permission was revoked. Also recorded 709 **DEPRECATED. Replaced by
427 as a multi-dimensional metric in Permissions.Action.VideoCapture. Note: This 710 ContentSettings.PermissionActions_VideoCapture.Revoked.Url2 as of M52. The
428 metric is recorded for more revocation actions as of 2016-04-01 (M51). 711 domain for which an VideoCapture permission was revoked. Note: This metric
712 is recorded for more revocation actions as of 2016-04-01 (M51).
429 </summary> 713 </summary>
430 </rappor-metric> 714 </rappor-metric>
431 715
716 <rappor-metric
717 name="ContentSettings.PermissionActions_VideoCapture.Revoked.Url2"
718 type="LOW_FREQUENCY_ETLD_PLUS_ONE">
719 <owner>dominickn@chromium.org</owner>
720 <owner>tsergeant@chromium.org</owner>
721 <summary>
722 The domain for which an VideoCapture permission was revoked.
723 </summary>
724 </rappor-metric>
725
432 <rappor-metric name="ContentSettings.PermissionRequested.Geolocation.Url" 726 <rappor-metric name="ContentSettings.PermissionRequested.Geolocation.Url"
433 type="ETLD_PLUS_ONE"> 727 type="ETLD_PLUS_ONE">
434 <owner>miguelg@chromium.org</owner> 728 <owner>miguelg@chromium.org</owner>
435 <summary> 729 <summary>
730 **DEPRECATED: replaced by
731 ContentSettings.PermissionRequested.Geolocation.Url2 as of M52. The domain
732 that issues a Geolocation permission prompt.
733 </summary>
734 </rappor-metric>
735
736 <rappor-metric name="ContentSettings.PermissionRequested.Geolocation.Url2"
737 type="LOW_FREQUENCY_ETLD_PLUS_ONE">
738 <owner>dominickn@chromium.org</owner>
739 <owner>miguelg@chromium.org</owner>
740 <summary>
436 The domain that issues a Geolocation permission prompt. 741 The domain that issues a Geolocation permission prompt.
437 </summary> 742 </summary>
438 </rappor-metric> 743 </rappor-metric>
439 744
440 <rappor-metric name="ContentSettings.PermissionRequested.Notifications.Url" 745 <rappor-metric name="ContentSettings.PermissionRequested.Notifications.Url"
441 type="ETLD_PLUS_ONE"> 746 type="ETLD_PLUS_ONE">
442 <owner>miguelg@chromium.org</owner> 747 <owner>miguelg@chromium.org</owner>
443 <summary> 748 <summary>
749 **DEPRECATED: replaced by
750 ContentSettings.PermissionRequested.Notifications.Url2 as of M52. The
751 domain that issues a Notification permission prompt.
752 </summary>
753 </rappor-metric>
754
755 <rappor-metric name="ContentSettings.PermissionRequested.Notifications.Url2"
756 type="LOW_FREQUENCY_ETLD_PLUS_ONE">
757 <owner>dominickn@chromium.org</owner>
758 <owner>miguelg@chromium.org</owner>
759 <summary>
444 The domain that issues a Notification permission prompt. 760 The domain that issues a Notification permission prompt.
445 </summary> 761 </summary>
446 </rappor-metric> 762 </rappor-metric>
447 763
448 <rappor-metric name="CustomTabs.ServiceClient.PackageName" 764 <rappor-metric name="CustomTabs.ServiceClient.PackageName"
449 type="UMA_RAPPOR_TYPE"> 765 type="UMA_RAPPOR_TYPE">
450 <owner>yusufo@chromium.org</owner> 766 <owner>yusufo@chromium.org</owner>
451 <summary> 767 <summary>
452 The package name for a client that has connected through the custom tabs 768 The package name for a client that has connected through the custom tabs
453 service. 769 service.
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after
717 to de-noise than this one. 1033 to de-noise than this one.
718 </summary> 1034 </summary>
719 </flags-field> 1035 </flags-field>
720 </rappor-metric> 1036 </rappor-metric>
721 1037
722 <rappor-metric name="Permissions.Action.AudioCapture" 1038 <rappor-metric name="Permissions.Action.AudioCapture"
723 type="SAFEBROWSING_RAPPOR_TYPE"> 1039 type="SAFEBROWSING_RAPPOR_TYPE">
724 <owner>kcarattini@chromium.org</owner> 1040 <owner>kcarattini@chromium.org</owner>
725 <owner>tsergeant@chromium.org</owner> 1041 <owner>tsergeant@chromium.org</owner>
726 <summary> 1042 <summary>
727 The domain+registry of a URL that requested the MediaStream Microphone API. 1043 **DEPRECATED. No longer reported as of M52. The domain+registry of a URL
1044 that requested the MediaStream Microphone API.
728 </summary> 1045 </summary>
729 <string-field name="Scheme"> 1046 <string-field name="Scheme">
730 <summary> 1047 <summary>
731 The scheme of a URL that requested a permission. 1048 The scheme of a URL that requested a permission.
732 </summary> 1049 </summary>
733 </string-field> 1050 </string-field>
734 <string-field name="Host"> 1051 <string-field name="Host">
735 <summary> 1052 <summary>
736 The host of a URL that requested a permission. 1053 The host of a URL that requested a permission.
737 </summary> 1054 </summary>
(...skipping 19 matching lines...) Expand all
757 <summary> 1074 <summary>
758 Bitfield of the permission actions taken for this permission. 1075 Bitfield of the permission actions taken for this permission.
759 </summary> 1076 </summary>
760 </flags-field> 1077 </flags-field>
761 </rappor-metric> 1078 </rappor-metric>
762 1079
763 <rappor-metric name="Permissions.Action.DurableStorage" 1080 <rappor-metric name="Permissions.Action.DurableStorage"
764 type="SAFEBROWSING_RAPPOR_TYPE"> 1081 type="SAFEBROWSING_RAPPOR_TYPE">
765 <owner>kcarattini@chromium.org</owner> 1082 <owner>kcarattini@chromium.org</owner>
766 <summary> 1083 <summary>
767 The domain+registry of a URL that requested the Durable Storage API. 1084 **DEPRECATED. No longer reported as of M52. The domain+registry of a URL
1085 that requested the Durable Storage API.
768 </summary> 1086 </summary>
769 <string-field name="Scheme"> 1087 <string-field name="Scheme">
770 <summary> 1088 <summary>
771 The scheme of a URL that requested a permission. 1089 The scheme of a URL that requested a permission.
772 </summary> 1090 </summary>
773 </string-field> 1091 </string-field>
774 <string-field name="Host"> 1092 <string-field name="Host">
775 <summary> 1093 <summary>
776 The host of a URL that requested a permission. 1094 The host of a URL that requested a permission.
777 </summary> 1095 </summary>
(...skipping 19 matching lines...) Expand all
797 <summary> 1115 <summary>
798 Bitfield of the permission actions taken for this permission. 1116 Bitfield of the permission actions taken for this permission.
799 </summary> 1117 </summary>
800 </flags-field> 1118 </flags-field>
801 </rappor-metric> 1119 </rappor-metric>
802 1120
803 <rappor-metric name="Permissions.Action.Geolocation" 1121 <rappor-metric name="Permissions.Action.Geolocation"
804 type="SAFEBROWSING_RAPPOR_TYPE"> 1122 type="SAFEBROWSING_RAPPOR_TYPE">
805 <owner>kcarattini@chromium.org</owner> 1123 <owner>kcarattini@chromium.org</owner>
806 <summary> 1124 <summary>
807 The domain+registry of a URL that requested the Geolocation API. 1125 **DEPRECATED. No longer reported as of M52. The domain+registry of a URL
1126 that requested the Geolocation API.
808 </summary> 1127 </summary>
809 <string-field name="Scheme"> 1128 <string-field name="Scheme">
810 <summary> 1129 <summary>
811 The scheme of a URL that requested a permission. 1130 The scheme of a URL that requested a permission.
812 </summary> 1131 </summary>
813 </string-field> 1132 </string-field>
814 <string-field name="Host"> 1133 <string-field name="Host">
815 <summary> 1134 <summary>
816 The host of a URL that requested a permission. 1135 The host of a URL that requested a permission.
817 </summary> 1136 </summary>
(...skipping 19 matching lines...) Expand all
837 <summary> 1156 <summary>
838 Bitfield of the permission actions taken for this permission. 1157 Bitfield of the permission actions taken for this permission.
839 </summary> 1158 </summary>
840 </flags-field> 1159 </flags-field>
841 </rappor-metric> 1160 </rappor-metric>
842 1161
843 <rappor-metric name="Permissions.Action.MidiSysEx" 1162 <rappor-metric name="Permissions.Action.MidiSysEx"
844 type="SAFEBROWSING_RAPPOR_TYPE"> 1163 type="SAFEBROWSING_RAPPOR_TYPE">
845 <owner>kcarattini@chromium.org</owner> 1164 <owner>kcarattini@chromium.org</owner>
846 <summary> 1165 <summary>
847 The domain+registry of a URL that requested the MidiSysEx API. 1166 **DEPRECATED. No longer reported as of M52. The domain+registry of a URL
1167 that requested the MidiSysEx API.
848 </summary> 1168 </summary>
849 <string-field name="Scheme"> 1169 <string-field name="Scheme">
850 <summary> 1170 <summary>
851 The scheme of a URL that requested a permission. 1171 The scheme of a URL that requested a permission.
852 </summary> 1172 </summary>
853 </string-field> 1173 </string-field>
854 <string-field name="Host"> 1174 <string-field name="Host">
855 <summary> 1175 <summary>
856 The host of a URL that requested a permission. 1176 The host of a URL that requested a permission.
857 </summary> 1177 </summary>
(...skipping 19 matching lines...) Expand all
877 <summary> 1197 <summary>
878 Bitfield of the permission actions taken for this permission. 1198 Bitfield of the permission actions taken for this permission.
879 </summary> 1199 </summary>
880 </flags-field> 1200 </flags-field>
881 </rappor-metric> 1201 </rappor-metric>
882 1202
883 <rappor-metric name="Permissions.Action.Notifications" 1203 <rappor-metric name="Permissions.Action.Notifications"
884 type="SAFEBROWSING_RAPPOR_TYPE"> 1204 type="SAFEBROWSING_RAPPOR_TYPE">
885 <owner>kcarattini@chromium.org</owner> 1205 <owner>kcarattini@chromium.org</owner>
886 <summary> 1206 <summary>
887 The domain+registry of a URL that requested the Notifications API. 1207 **DEPRECATED. No longer reported as of M52. The domain+registry of a URL
1208 that requested the Notifications API.
888 </summary> 1209 </summary>
889 <string-field name="Scheme"> 1210 <string-field name="Scheme">
890 <summary> 1211 <summary>
891 The scheme of a URL that requested a permission. 1212 The scheme of a URL that requested a permission.
892 </summary> 1213 </summary>
893 </string-field> 1214 </string-field>
894 <string-field name="Host"> 1215 <string-field name="Host">
895 <summary> 1216 <summary>
896 The host of a URL that requested a permission. 1217 The host of a URL that requested a permission.
897 </summary> 1218 </summary>
(...skipping 19 matching lines...) Expand all
917 <summary> 1238 <summary>
918 Bitfield of the permission actions taken for this permission. 1239 Bitfield of the permission actions taken for this permission.
919 </summary> 1240 </summary>
920 </flags-field> 1241 </flags-field>
921 </rappor-metric> 1242 </rappor-metric>
922 1243
923 <rappor-metric name="Permissions.Action.ProtectedMediaIdentifier" 1244 <rappor-metric name="Permissions.Action.ProtectedMediaIdentifier"
924 type="SAFEBROWSING_RAPPOR_TYPE"> 1245 type="SAFEBROWSING_RAPPOR_TYPE">
925 <owner>kcarattini@chromium.org</owner> 1246 <owner>kcarattini@chromium.org</owner>
926 <summary> 1247 <summary>
927 The domain+registry of a URL that requested the ProtectedMediaIdentifier 1248 **DEPRECATED. No longer reported as of M52. The domain+registry of a URL
928 API. 1249 that requested the ProtectedMediaIdentifier API.
929 </summary> 1250 </summary>
930 <string-field name="Scheme"> 1251 <string-field name="Scheme">
931 <summary> 1252 <summary>
932 The scheme of a URL that requested a permission. 1253 The scheme of a URL that requested a permission.
933 </summary> 1254 </summary>
934 </string-field> 1255 </string-field>
935 <string-field name="Host"> 1256 <string-field name="Host">
936 <summary> 1257 <summary>
937 The host of a URL that requested a permission. 1258 The host of a URL that requested a permission.
938 </summary> 1259 </summary>
(...skipping 19 matching lines...) Expand all
958 <summary> 1279 <summary>
959 Bitfield of the permission actions taken for this permission. 1280 Bitfield of the permission actions taken for this permission.
960 </summary> 1281 </summary>
961 </flags-field> 1282 </flags-field>
962 </rappor-metric> 1283 </rappor-metric>
963 1284
964 <rappor-metric name="Permissions.Action.PushMessaging" 1285 <rappor-metric name="Permissions.Action.PushMessaging"
965 type="SAFEBROWSING_RAPPOR_TYPE"> 1286 type="SAFEBROWSING_RAPPOR_TYPE">
966 <owner>kcarattini@chromium.org</owner> 1287 <owner>kcarattini@chromium.org</owner>
967 <summary> 1288 <summary>
968 The domain+registry of a URL that requested the PushMessaging API. 1289 **DEPRECATED. No longer reported as of M52. The domain+registry of a URL
1290 that requested the PushMessaging API.
969 </summary> 1291 </summary>
970 <string-field name="Scheme"> 1292 <string-field name="Scheme">
971 <summary> 1293 <summary>
972 The scheme of a URL that requested a permission. 1294 The scheme of a URL that requested a permission.
973 </summary> 1295 </summary>
974 </string-field> 1296 </string-field>
975 <string-field name="Host"> 1297 <string-field name="Host">
976 <summary> 1298 <summary>
977 The host of a URL that requested a permission. 1299 The host of a URL that requested a permission.
978 </summary> 1300 </summary>
(...skipping 20 matching lines...) Expand all
999 Bitfield of the permission actions taken for this permission. 1321 Bitfield of the permission actions taken for this permission.
1000 </summary> 1322 </summary>
1001 </flags-field> 1323 </flags-field>
1002 </rappor-metric> 1324 </rappor-metric>
1003 1325
1004 <rappor-metric name="Permissions.Action.VideoCapture" 1326 <rappor-metric name="Permissions.Action.VideoCapture"
1005 type="SAFEBROWSING_RAPPOR_TYPE"> 1327 type="SAFEBROWSING_RAPPOR_TYPE">
1006 <owner>kcarattini@chromium.org</owner> 1328 <owner>kcarattini@chromium.org</owner>
1007 <owner>tsergeant@chromium.org</owner> 1329 <owner>tsergeant@chromium.org</owner>
1008 <summary> 1330 <summary>
1009 The domain+registry of a URL that requested the MediaStream Camera API. 1331 **DEPRECATED. No longer reported as of M52. The domain+registry of a URL
1332 that requested the MediaStream Camera API.
1010 </summary> 1333 </summary>
1011 <string-field name="Scheme"> 1334 <string-field name="Scheme">
1012 <summary> 1335 <summary>
1013 The scheme of a URL that requested a permission. 1336 The scheme of a URL that requested a permission.
1014 </summary> 1337 </summary>
1015 </string-field> 1338 </string-field>
1016 <string-field name="Host"> 1339 <string-field name="Host">
1017 <summary> 1340 <summary>
1018 The host of a URL that requested a permission. 1341 The host of a URL that requested a permission.
1019 </summary> 1342 </summary>
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after
1363 </rappor-metric> 1686 </rappor-metric>
1364 1687
1365 <rappor-metric name="interstitial.harmful" type="SAFEBROWSING_RAPPOR_TYPE"> 1688 <rappor-metric name="interstitial.harmful" type="SAFEBROWSING_RAPPOR_TYPE">
1366 <owner>nparker@chromium.org</owner> 1689 <owner>nparker@chromium.org</owner>
1367 <summary> 1690 <summary>
1368 The domain+registry of a URL that triggered a safe-browsing UWS 1691 The domain+registry of a URL that triggered a safe-browsing UWS
1369 interstitial. 1692 interstitial.
1370 </summary> 1693 </summary>
1371 <string-field name="domain"> 1694 <string-field name="domain">
1372 <summary> 1695 <summary>
1696 **DEPRECATED: replaced by interstitial.harmful2 as of M52. The
1697 domain+registry of a URL that triggered a safe-browsing UWS
1698 interstitial.
1699 </summary>
1700 </string-field>
1701 <flags-field name="flags">
1702 <flag>Bit 0: DID_PROCEED</flag>
1703 <flag>Bit 1: IS_REPEAT_VISIT</flag>
1704 <summary>
1705 Bitfield of the state from a safe-browsing UWS warning interstitial.
1706 </summary>
1707 </flags-field>
1708 </rappor-metric>
1709
1710 <rappor-metric name="interstitial.harmful2"
1711 type="LOW_FREQUENCY_SAFEBROWSING_RAPPOR_TYPE">
1712 <owner>dominickn@chromium.org</owner>
1713 <owner>nparker@chromium.org</owner>
1714 <summary>
1715 The domain+registry of a URL that triggered a safe-browsing UWS
1716 interstitial.
1717 </summary>
1718 <string-field name="domain">
1719 <summary>
1373 The domain+registry of a URL that triggered a safe-browsing UWS 1720 The domain+registry of a URL that triggered a safe-browsing UWS
1374 interstitial. 1721 interstitial.
1375 </summary> 1722 </summary>
1376 </string-field> 1723 </string-field>
1377 <flags-field name="flags"> 1724 <flags-field name="flags">
1378 <flag>Bit 0: DID_PROCEED</flag> 1725 <flag>Bit 0: DID_PROCEED</flag>
1379 <flag>Bit 1: IS_REPEAT_VISIT</flag> 1726 <flag>Bit 1: IS_REPEAT_VISIT</flag>
1380 <summary> 1727 <summary>
1381 Bitfield of the state from a safe-browsing UWS warning interstitial. 1728 Bitfield of the state from a safe-browsing UWS warning interstitial.
1382 </summary> 1729 </summary>
1383 </flags-field> 1730 </flags-field>
1384 </rappor-metric> 1731 </rappor-metric>
1385 1732
1386 <rappor-metric name="interstitial.malware" type="SAFEBROWSING_RAPPOR_TYPE"> 1733 <rappor-metric name="interstitial.malware" type="SAFEBROWSING_RAPPOR_TYPE">
1387 <owner>nparker@chromium.org</owner> 1734 <owner>nparker@chromium.org</owner>
1388 <summary> 1735 <summary>
1736 **DEPRECATED: replaced by interstitial.malware2 as of M52. The
1737 domain+registry of a URL that triggered a safe-browsing malware
1738 interstitial.
1739 </summary>
1740 <string-field name="domain">
1741 <summary>
1742 The domain+registry of a URL that triggered a safe-browsing malware
1743 interstitial.
1744 </summary>
1745 </string-field>
1746 <flags-field name="flags">
1747 <flag>Bit 0: DID_PROCEED</flag>
1748 <flag>Bit 1: IS_REPEAT_VISIT</flag>
1749 <summary>
1750 Bitfield of the state from a safe-browsing malware warning interstitial.
1751 </summary>
1752 </flags-field>
1753 </rappor-metric>
1754
1755 <rappor-metric name="interstitial.malware2"
1756 type="LOW_FREQUENCY_SAFEBROWSING_RAPPOR_TYPE">
1757 <owner>dominickn@chromium.org</owner>
1758 <owner>nparker@chromium.org</owner>
1759 <summary>
1389 The domain+registry of a URL that triggered a safe-browsing malware 1760 The domain+registry of a URL that triggered a safe-browsing malware
1390 interstitial. 1761 interstitial.
1391 </summary> 1762 </summary>
1392 <string-field name="domain"> 1763 <string-field name="domain">
1393 <summary> 1764 <summary>
1394 The domain+registry of a URL that triggered a safe-browsing malware 1765 The domain+registry of a URL that triggered a safe-browsing malware
1395 interstitial. 1766 interstitial.
1396 </summary> 1767 </summary>
1397 </string-field> 1768 </string-field>
1398 <flags-field name="flags"> 1769 <flags-field name="flags">
1399 <flag>Bit 0: DID_PROCEED</flag> 1770 <flag>Bit 0: DID_PROCEED</flag>
1400 <flag>Bit 1: IS_REPEAT_VISIT</flag> 1771 <flag>Bit 1: IS_REPEAT_VISIT</flag>
1401 <summary> 1772 <summary>
1402 Bitfield of the state from a safe-browsing malware warning interstitial. 1773 Bitfield of the state from a safe-browsing malware warning interstitial.
1403 </summary> 1774 </summary>
1404 </flags-field> 1775 </flags-field>
1405 </rappor-metric> 1776 </rappor-metric>
1406 1777
1407 <rappor-metric name="interstitial.phishing" type="SAFEBROWSING_RAPPOR_TYPE"> 1778 <rappor-metric name="interstitial.phishing" type="SAFEBROWSING_RAPPOR_TYPE">
1408 <owner>nparker@chromium.org</owner> 1779 <owner>nparker@chromium.org</owner>
1409 <summary> 1780 <summary>
1781 **DEPRECATED: replaced by interstitial.phishing2 as of M52. The
1782 domain+registry of a URL that triggered a safe-browsing phishing
1783 interstitial.
1784 </summary>
1785 <string-field name="domain">
1786 <summary>
1787 The domain+registry of a URL that triggered a safe-browsing phishing
1788 interstitial.
1789 </summary>
1790 </string-field>
1791 <flags-field name="flags">
1792 <flag>Bit 0: DID_PROCEED</flag>
1793 <flag>Bit 1: IS_REPEAT_VISIT</flag>
1794 <summary>
1795 Bitfield of the state from a safe-browsing phishing warning interstitial.
1796 </summary>
1797 </flags-field>
1798 </rappor-metric>
1799
1800 <rappor-metric name="interstitial.phishing2"
1801 type="LOW_FREQUENCY_SAFEBROWSING_RAPPOR_TYPE">
1802 <owner>dominickn@chromium.org</owner>
1803 <owner>nparker@chromium.org</owner>
1804 <summary>
1410 The domain+registry of a URL that triggered a safe-browsing phishing 1805 The domain+registry of a URL that triggered a safe-browsing phishing
1411 interstitial. 1806 interstitial.
1412 </summary> 1807 </summary>
1413 <string-field name="domain"> 1808 <string-field name="domain">
1414 <summary> 1809 <summary>
1415 The domain+registry of a URL that triggered a safe-browsing phishing 1810 The domain+registry of a URL that triggered a safe-browsing phishing
1416 interstitial. 1811 interstitial.
1417 </summary> 1812 </summary>
1418 </string-field> 1813 </string-field>
1419 <flags-field name="flags"> 1814 <flags-field name="flags">
(...skipping 10 matching lines...) Expand all
1430 <summary> 1825 <summary>
1431 ** DEPRECATED. Replaced by insterstitial.ssl2.domain on 2015-07-07 since 1826 ** DEPRECATED. Replaced by insterstitial.ssl2.domain on 2015-07-07 since
1432 the type changed.** The domain+registry of a URL that triggered an SSL 1827 the type changed.** The domain+registry of a URL that triggered an SSL
1433 interstitial. Domains for bad-clock warnings are not reported. 1828 interstitial. Domains for bad-clock warnings are not reported.
1434 </summary> 1829 </summary>
1435 </rappor-metric> 1830 </rappor-metric>
1436 1831
1437 <rappor-metric name="interstitial.ssl2" type="UMA_RAPPOR_TYPE"> 1832 <rappor-metric name="interstitial.ssl2" type="UMA_RAPPOR_TYPE">
1438 <owner>nparker@chromium.org</owner> 1833 <owner>nparker@chromium.org</owner>
1439 <summary> 1834 <summary>
1835 **DEPRECATED: replaced by interstitial.ssl2 as of M52. The domain+registry
1836 of a URL that triggered an SSL interstitial.
1837 </summary>
1838 <string-field name="domain">
1839 <summary>
1840 The domain+registry of a URL that triggered an SSL interstitial.
1841 </summary>
1842 </string-field>
1843 <flags-field name="flags">
1844 <flag>Bit 0: DID_PROCEED</flag>
1845 <flag>Bit 1: IS_REPEAT_VISIT</flag>
1846 <summary>
1847 Bitfield of the state from an SSL warning interstitial.
1848 </summary>
1849 </flags-field>
1850 </rappor-metric>
1851
1852 <rappor-metric name="interstitial.ssl3" type="LOW_FREQUENCY_UMA_RAPPOR_TYPE">
1853 <owner>dominickn@chromium.org</owner>
1854 <owner>nparker@chromium.org</owner>
1855 <summary>
1440 The domain+registry of a URL that triggered an SSL interstitial. 1856 The domain+registry of a URL that triggered an SSL interstitial.
1441 </summary> 1857 </summary>
1442 <string-field name="domain"> 1858 <string-field name="domain">
1443 <summary> 1859 <summary>
1444 The domain+registry of a URL that triggered an SSL interstitial. 1860 The domain+registry of a URL that triggered an SSL interstitial.
1445 </summary> 1861 </summary>
1446 </string-field> 1862 </string-field>
1447 <flags-field name="flags"> 1863 <flags-field name="flags">
1448 <flag>Bit 0: DID_PROCEED</flag> 1864 <flag>Bit 0: DID_PROCEED</flag>
1449 <flag>Bit 1: IS_REPEAT_VISIT</flag> 1865 <flag>Bit 1: IS_REPEAT_VISIT</flag>
1450 <summary> 1866 <summary>
1451 Bitfield of the state from an SSL warning interstitial. 1867 Bitfield of the state from an SSL warning interstitial.
1452 </summary> 1868 </summary>
1453 </flags-field> 1869 </flags-field>
1454 </rappor-metric> 1870 </rappor-metric>
1455 1871
1456 </rappor-metrics> 1872 </rappor-metrics>
1457 1873
1458 </rappor-configuration> 1874 </rappor-configuration>
OLDNEW
« no previous file with comments | « ios/chrome/browser/ssl/ios_ssl_blocking_page.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698