summaryrefslogtreecommitdiff
path: root/core/java/android
diff options
context:
space:
mode:
authorJing Ji <jji@google.com>2020-03-26 00:43:33 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2020-03-26 00:43:33 +0000
commit52f4d8d9f22cd61cd0459a44b9a87359a81616c6 (patch)
tree3d9974504fb10575fc0a665448560995b26d1f8a /core/java/android
parent2089dc67c714a56a5286a2325ecf88b62fccf5c8 (diff)
parent37e0b0c2ce6db0f3e3087d0cdabde5cb9ae52a72 (diff)
Merge "Update doc for ApplicationExitInfo.getDefiningUid" into rvc-dev
Diffstat (limited to 'core/java/android')
-rw-r--r--core/java/android/app/ApplicationExitInfo.java8
1 files changed, 5 insertions, 3 deletions
diff --git a/core/java/android/app/ApplicationExitInfo.java b/core/java/android/app/ApplicationExitInfo.java
index 61be01f9f6c0..0ecc003a33bd 100644
--- a/core/java/android/app/ApplicationExitInfo.java
+++ b/core/java/android/app/ApplicationExitInfo.java
@@ -499,9 +499,11 @@ public final class ApplicationExitInfo implements Parcelable {
/**
* Return the defining kernel user identifier, maybe different from {@link #getRealUid} and
- * {@link #getPackageUid}, if an external service was bound with the flag
- * {@link android.content.Context#BIND_EXTERNAL_SERVICE} - in this case, this field here
- * will be the kernel user identifier of the external service provider.
+ * {@link #getPackageUid}, if an external service has the
+ * {@link android.R.styleable#AndroidManifestService_useAppZygote android:useAppZygote} set
+ * to <code>true<code> and was bound with the flag
+ * {@link android.content.Context#BIND_EXTERNAL_SERVICE} - in this case, this field here will
+ * be the kernel user identifier of the external service provider.
*/
public int getDefiningUid() {
return mDefiningUid;