From 2921dd0f87ead38b5147ea8215a803637e6f633e Mon Sep 17 00:00:00 2001 From: Yi Jin Date: Fri, 23 Mar 2018 14:10:31 -0700 Subject: [PATCH] Fix privacy tags based on go/irpf. Bug: 74837756 Test: manual Change-Id: I1619a967e9f8c9d7f16ba8fbbafe1ac2009051c7 --- core/proto/android/server/jobscheduler.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/proto/android/server/jobscheduler.proto b/core/proto/android/server/jobscheduler.proto index 122e5c48214d2..8d4b56ca36191 100644 --- a/core/proto/android/server/jobscheduler.proto +++ b/core/proto/android/server/jobscheduler.proto @@ -514,7 +514,7 @@ message JobPackageHistoryProto { optional int32 uid = 3; // Job IDs can technically be negative. optional int32 job_id = 4; - optional string tag = 5 [ (.android.privacy).dest = DEST_EXPLICIT ]; + optional string tag = 5; // Only valid for STOP_JOB or STOP_PERIODIC_JOB Events. optional .android.app.job.StopReasonEnum stop_reason = 6; } @@ -538,7 +538,7 @@ message JobStatusDumpProto { // The UID that scheduled the job. optional int32 calling_uid = 1; - optional string tag = 2 [ (.android.privacy).dest = DEST_EXPLICIT ]; + optional string tag = 2; // The UID for which the job is being run. optional int32 source_uid = 3;