Merge "Account info on job wakelocks" into nyc-dev

This commit is contained in:
Shreyas Basarge
2016-04-26 22:36:45 +00:00
committed by Android (Google) Code Review
2 changed files with 4 additions and 14 deletions

View File

@@ -1301,7 +1301,7 @@ public class SyncManager {
}
getJobScheduler().scheduleAsPackage(b.build(), syncOperation.owningPackage,
syncOperation.target.userId, "sync");
syncOperation.target.userId, syncOperation.wakeLockName());
}
/**

View File

@@ -150,19 +150,9 @@ public final class JobStatus {
this.sourceTag = tag;
}
if (this.sourceTag != null) {
StringBuilder sb = new StringBuilder();
sb.append(job.getService().getPackageName());
sb.append('/');
sb.append(this.sourceTag);
if (sourcePackageName != null) {
sb.append('/');
sb.append(this.sourcePackageName);
}
this.batteryName = sb.toString();
} else {
this.batteryName = job.getService().flattenToShortString();
}
this.batteryName = this.sourceTag != null
? this.sourceTag + ":" + job.getService().getPackageName()
: job.getService().flattenToShortString();
this.tag = "*job*/" + this.batteryName;
this.earliestRunTimeElapsedMillis = earliestRunTimeElapsedMillis;