Chromium Code Reviews| Index: content/public/common/permission_status.mojom |
| diff --git a/content/public/common/permission_status.mojom b/content/public/common/permission_status.mojom |
| index f7e56bfab19cdbc096cb41eadab2dd099d3b097b..454f64618e2a2e40d7bb2db0ad68bc8d12d65e82 100644 |
| --- a/content/public/common/permission_status.mojom |
| +++ b/content/public/common/permission_status.mojom |
| @@ -7,5 +7,6 @@ module content; |
| enum PermissionStatus { |
| GRANTED, |
| DENIED, |
| - ASK |
| + ASK, |
| + NUM |
|
mlamouri (slow - plz ping)
2015/07/07 21:18:47
I'm confused but maybe I'm missing something. Why
keenanb
2015/07/08 00:37:21
UMA_HISTOGRAM_ENUMERATION needs a boundary value.
mlamouri (slow - plz ping)
2015/07/08 15:00:44
Can you do:
LAST = ASK,
instead of NUM.
Then, yo
|
| }; |