Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 21a039cb authored by Howard Ro's avatar Howard Ro
Browse files

Move GenericAtom from pulled atom group to pushed atom group

Test: no test needed
Change-Id: I67fb88e6707a8196d379d37d170aa1199abf849a
parent e20cd739
Loading
Loading
Loading
Loading
+11 −11
Original line number Diff line number Diff line
@@ -1727,6 +1727,17 @@ message AppDied {
    optional uint64 timestamp_millis = 1 [(stateFieldOption).option = EXCLUSIVE];
}

/**
 * An atom for generic metrics logging. Available from Android Q.
 */
message GenericAtom {
    // The uid of the application that sent this custom atom.
    optional int32 uid = 1 [(is_uid) = true];

    // An event_id indicates the type of event.
    optional int32 event_id = 2;
}

//////////////////////////////////////////////////////////////////////
// Pulled atoms below this line //
//////////////////////////////////////////////////////////////////////
@@ -2156,14 +2167,3 @@ message BinderCallsExceptions {
    // Total number of exceptions.
    optional int64 exception_count = 2;
}

/**
 * An atom for generic metrics logging. Available from Android Q.
 */
message GenericAtom {
    // The uid of the application that sent this custom atom.
    optional int32 uid = 1 [(is_uid) = true];

    // An event_id indicates the type of event.
    optional int32 event_id = 2;
}