Internal change

PiperOrigin-RevId: 385056025
This commit is contained in:
hai007
2021-07-15 19:06:17 -07:00
committed by Copybara-Service
parent 386daf26a2
commit a8fe61d846
+10
View File
@@ -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;
}