0

Roll metrics proto changes from internal

Bug: 996516
Change-Id: I1d15cc85274698027896c21324cc1fd12648c962
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1764868
Auto-Submit: Moe Ahmadi <mahmadi@chromium.org>
Commit-Queue: Mark Pearson <mpearson@chromium.org>
Reviewed-by: Mark Pearson <mpearson@chromium.org>
Cr-Commit-Position: refs/heads/master@{#689338}
This commit is contained in:
Moe Ahmadi
2019-08-22 03:48:08 +00:00
committed by Commit Bot
parent f44b0b5ffe
commit abf90366b1
3 changed files with 8 additions and 4 deletions

@ -1,8 +1,8 @@
Name: Metrics Protos
Short Name: metrics_proto
URL: This is the canonical public repository
Version: 264482978
Date: 2019/08/20 UTC
Version: 264733504
Date: 2019/08/22 UTC
License: BSD
Security Critical: Yes

@ -156,6 +156,10 @@ message OmniboxEventProto {
// box of the ChromeOS app list (a.k.a., launcher).
CHROMEOS_APP_LIST = 14;
// The new tab page in which this omnibox interaction started with the user
// having focus in the realbox.
NTP_REALBOX = 15;
// When adding new classifications, please consider adding them in
// chromium's chrome/browser/resources/omnibox/omnibox.html
// so that these new options are displayed on about:omnibox.

@ -30,7 +30,7 @@ message UserDemographicsProto {
// highly identifying.
//
// Values from this enum are both sent to Chrome via Chrome Sync, and
// selectively forwarded from Chrome to UMA logs.
// selectively forwarded from Chrome in its UMA logs.
enum Gender {
// The default value for clients that do not have any gender information.
GENDER_UNKNOWN = 0;
@ -49,6 +49,6 @@ message UserDemographicsProto {
// The gender specified by the user. If the user's gender is unknown or non-
// binary, this field will be omitted, corresponding to a default
// value of GENDER_UNKNOWN.
// value of GENDER_CUSTOM_OR_OTHER.
optional Gender gender = 2;
}