Merge changes from topic 'stage-aosp-master-generics-api' into stage-aosp-master

* changes:
  DO NOT MERGE Track generics in API definition.
  DO NOT MERGE Fix issue #29871385: Need JobScheduler.scheduleAsPackage to be system API
This commit is contained in:
TreeHugger Robot
2016-09-28 21:47:50 +00:00
committed by Android (Google) Code Review
4 changed files with 1791 additions and 1788 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -18,6 +18,7 @@ package android.app.job;
import android.annotation.NonNull;
import android.annotation.Nullable;
import android.annotation.SystemApi;
import java.util.List;
@@ -75,6 +76,7 @@ public abstract class JobScheduler {
* @return {@link #RESULT_SUCCESS} or {@link #RESULT_FAILURE}
* @hide
*/
@SystemApi
public abstract int scheduleAsPackage(JobInfo job, String packageName, int userId, String tag);
/**