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; +}