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

Commit 10ddc956 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Adding UNKNOWN value to Job constraint change enum."

parents f86eaa20 e8db3ab5
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -5528,8 +5528,9 @@ message ScheduledJobConstraintChanged {
    optional com.android.server.job.ConstraintEnum constraint = 3;

    enum State {
        UNSATISFIED = 0;
        SATISFIED = 1;
        UNKNOWN = 0;
        UNSATISFIED = 1;
        SATISFIED = 2;
    }
    optional State state = 4;
}