File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ option objc_class_prefix = "GNSHP";
32
32
// in NearbyClearcutLogger (for android, or clearcut_event_logger as the
33
33
// equivalence for Windows) for all events (may exclude settings), and
34
34
// session_id for a pair of events (start and end of a session).
35
- // Next id: 73
35
+ // Next id: 74
36
36
enum EventType {
37
37
UNKNOWN_EVENT_TYPE = 0 ;
38
38
@@ -313,6 +313,9 @@ enum EventType {
313
313
// A HaTS survey session id has been joined with Quick Share flow id.
314
314
HATS_JOINT_EVENT = 72 ;
315
315
316
+ // Previews received.
317
+ RECEIVE_PREVIEWS = 73 ;
318
+
316
319
// LINT.ThenChange(//depot/google3/location/nearby/proto/nearby_event_codes.proto:SharingEventCode)
317
320
}
318
321
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ option objc_class_prefix = "GNCP";
31
31
32
32
// Top-level log proto for all NearbySharing logging.
33
33
// Each log contains a key (event_type), value (a verb-noun event) pair.
34
- // Next Tag: 82
34
+ // Next Tag: 83
35
35
// LINT.IfChange
36
36
message SharingLog {
37
37
/* collection_basis = {
@@ -220,6 +220,8 @@ message SharingLog {
220
220
221
221
optional HatsJointEvent hats_joint_event = 81 ;
222
222
223
+ optional ReceivePreviews receive_previews = 82 ;
224
+
223
225
// Used only for Nearby Share Windows app now.
224
226
message AppInfo {
225
227
// e.g. "1.0.408"
@@ -962,5 +964,10 @@ message SharingLog {
962
964
optional string hats_session_id = 2
963
965
/* type = ST_SESSION_ID */;
964
966
}
967
+
968
+ // EventType: RECEIVE_PREVIEWS
969
+ message ReceivePreviews {
970
+ optional int32 num_previews = 1 ;
971
+ }
965
972
}
966
973
// LINT.ThenChange(//depot/google3/logs/proto/location/nearby/nearby_client_log.proto)
You can’t perform that action at this time.
0 commit comments