From a83fbe3ebb47980e204c39cf23f20813e2048a2f Mon Sep 17 00:00:00 2001 From: hai007 Date: Wed, 8 Nov 2023 21:33:53 -0800 Subject: [PATCH] Correct event types for SendDesktopNotification and SendDesktopTransferEvent PiperOrigin-RevId: 580773405 --- proto/sharing_enums.proto | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/proto/sharing_enums.proto b/proto/sharing_enums.proto index fb128bbb..bb2fa688 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: 66 +// Next id: 67 enum EventType { UNKNOWN_EVENT_TYPE = 0; @@ -241,6 +241,10 @@ enum EventType { // Show allow permission auto access UI SHOW_ALLOW_PERMISSION_AUTO_ACCESS = 65; + // UI events for transferring files with desktop applications. It includes + // event types such as DESKTOP_TRANSFER_EVENT_SEND_TYPE_SELECT_A_DEVICE. + SEND_DESKTOP_TRANSFER_EVENT = 66; + // LINT.ThenChange(//depot/google3/location/nearby/proto/nearby_event_codes.proto:SharingEventCode) }