From 72ac6e8df0a5aa6051adb9e58e7b1f9ea480461d Mon Sep 17 00:00:00 2001 From: hai007 Date: Tue, 21 Mar 2023 13:22:04 -0700 Subject: [PATCH] Add new `SETUP_WIZARD` event to Nearby Sharing analytics. PiperOrigin-RevId: 518363414 --- proto/sharing_enums.proto | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/proto/sharing_enums.proto b/proto/sharing_enums.proto index af4d563c..f189f22f 100644 --- a/proto/sharing_enums.proto +++ b/proto/sharing_enums.proto @@ -27,7 +27,7 @@ option objc_class_prefix = "GNSHP"; // in NearbyClearcutLogger (for android, or clearcut_event_logger as the // equivalence for Windows) for all events (may exclude settings), and // session_id for a pair of events (start and end of a session). -// Next id: 57 +// Next id: 58 enum EventType { UNKNOWN_EVENT_TYPE = 0; @@ -211,6 +211,9 @@ enum EventType { // Default opt in DEFAULT_OPT_IN = 56; + // The result of the setup wizard flow + SETUP_WIZARD = 57; + // LINT.ThenChange(//depot/google3/location/nearby/proto/nearby_event_codes.proto:SharingEventCode) }