Add TransferUIEvent proto and adapter APIs for receiving

PiperOrigin-RevId: 542301885
This commit is contained in:
Eiden Kim
2023-06-21 10:48:12 -07:00
committed by Copybara-Service
parent 05c707dd78
commit 5a2c972707
+10
View File
@@ -631,3 +631,13 @@ enum DesktopNotification {
// LINT.ThenChange(
// //depot/google3/location/nearby/cpp/sharing/clients/dart/platform/lib/types/models.dart
// )
enum TransferUIEvent {
TRANSFER_UI_EVENT_UNKNOWN = 0;
// Receive attachments.
TRANSFER_UI_EVENT_RECEIVE_ACCEPT = 1;
TRANSFER_UI_EVENT_RECEIVE_PROGRESS = 2;
TRANSFER_UI_EVENT_RECEIVE_RECEIVED = 3;
TRANSFER_UI_EVENT_RECEIVE_ERROR = 4;
}