From 82c8970535bf754b5ffd620b4bb0fd0b73e4b7b9 Mon Sep 17 00:00:00 2001 From: hai007 Date: Mon, 11 Sep 2023 17:55:46 -0700 Subject: [PATCH] [Sharing][Analytics] Adding logging for permission auto access UI. PiperOrigin-RevId: 564554884 --- 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 ce06d0da..3d1d9f87 100644 --- a/proto/sharing_enums.proto +++ b/proto/sharing_enums.proto @@ -30,7 +30,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: 65 +// Next id: 66 enum EventType { UNKNOWN_EVENT_TYPE = 0; @@ -238,6 +238,9 @@ enum EventType { // Decrypt certificate failure DECRYPT_CERTIFICATE_FAILURE = 64; + // Show allow permission auto access UI + SHOW_ALLOW_PERMISSION_AUTO_ACCESS = 65; + // LINT.ThenChange(//depot/google3/location/nearby/proto/nearby_event_codes.proto:SharingEventCode) }