From a8fe61d84674fb64989a23df8cb22b4faabd7c05 Mon Sep 17 00:00:00 2001 From: hai007 Date: Thu, 15 Jul 2021 19:05:09 -0700 Subject: [PATCH] Internal change PiperOrigin-RevId: 385056025 --- proto/sharing_enums.proto | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/proto/sharing_enums.proto b/proto/sharing_enums.proto index 4c4612ea..4150a13d 100644 --- a/proto/sharing_enums.proto +++ b/proto/sharing_enums.proto @@ -168,6 +168,9 @@ enum EventType { // to correct attachment formats and move files attachments from temporary // directory to final destination. PROCESS_RECEIVED_ATTACHMENTS_END = 43; + + // Toggle Show Notification setting item in Nearby Share setting. + TOGGLE_SHOW_NOTIFICATION = 44; } // Event category to differentiate whether this comes from sender or receiver, @@ -389,3 +392,10 @@ enum VerifyAPKStatus { INSTALLABLE = 2; ALREADY_INSTALLED = 3; } + +enum ShowNotificationStatus { + UNKNOWN_SHOW_NOTIFICATION_STATUS = 0; + + SHOW = 1; + NOT_SHOW = 2; +}