diff options
author | Adam Bookatz <bookatz@google.com> | 2020-12-10 10:03:34 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2020-12-10 10:03:34 +0000 |
commit | c8eaa82d5c31f31c0625ee0e047be71d4ed6b0c9 (patch) | |
tree | e34deed9a0d1f87db53a9b7b1a37b2200960cabf /startop | |
parent | c71d6ec10ca3a20b4a0f426586806ba34a3aa615 (diff) | |
parent | 4f2d2e84a4ee8e2d431a40a01d0c1581451a34d7 (diff) |
Merge "Cleanup some SystemService.onUser...() comments"
Diffstat (limited to 'startop')
-rw-r--r-- | startop/iorap/src/com/google/android/startop/iorap/SystemServiceUserEvent.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/startop/iorap/src/com/google/android/startop/iorap/SystemServiceUserEvent.java b/startop/iorap/src/com/google/android/startop/iorap/SystemServiceUserEvent.java index b77c03c1584a..2e7bafe7bdbf 100644 --- a/startop/iorap/src/com/google/android/startop/iorap/SystemServiceUserEvent.java +++ b/startop/iorap/src/com/google/android/startop/iorap/SystemServiceUserEvent.java @@ -36,15 +36,15 @@ import java.lang.annotation.RetentionPolicy; */ public class SystemServiceUserEvent implements Parcelable { - /** @see com.android.server.SystemService#onStartUser */ + /** @see com.android.server.SystemService#onUserStarting */ public static final int TYPE_START_USER = 0; - /** @see com.android.server.SystemService#onUnlockUser */ + /** @see com.android.server.SystemService#onUserUnlocking */ public static final int TYPE_UNLOCK_USER = 1; - /** @see com.android.server.SystemService#onSwitchUser*/ + /** @see com.android.server.SystemService#onUserSwitching*/ public static final int TYPE_SWITCH_USER = 2; - /** @see com.android.server.SystemService#onStopUser */ + /** @see com.android.server.SystemService#onUserStopping */ public static final int TYPE_STOP_USER = 3; - /** @see com.android.server.SystemService#onCleanupUser */ + /** @see com.android.server.SystemService#onUserStopped */ public static final int TYPE_CLEANUP_USER = 4; private static final int TYPE_MAX = TYPE_CLEANUP_USER; |