diff options
| author | Roshan Pius <rpius@google.com> | 2020-01-09 06:02:38 -0800 |
|---|---|---|
| committer | Roshan Pius <rpius@google.com> | 2020-01-09 13:24:08 -0800 |
| commit | dc3e07d8155cc40804e7b033f06a548d05d2f347 (patch) | |
| tree | ff52314d81a223199e3fb8e524fdf8f39f6fae8d /core/java/android | |
| parent | 1ec6418fcf1bc4b5d8d493bebc62a10e6b4d2809 (diff) | |
Process: Make WIFI_UID a public API constant
The Process.WIFI_UID constant is referenced by the wifi mainline module & hence
needs to be a formal API constant. There are some other
subsystem uid's like PHONE_UID which are already public constants, so
there is precedence for making these uid's public if necessary?
Bug: 147396785
Test: Compiles
Change-Id: I85008965f9017e208c501c5a349f7e60cc102e0f
Diffstat (limited to 'core/java/android')
| -rw-r--r-- | core/java/android/os/Process.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/core/java/android/os/Process.java b/core/java/android/os/Process.java index 3ef86ed9f994..5d0885a7ef55 100644 --- a/core/java/android/os/Process.java +++ b/core/java/android/os/Process.java @@ -68,10 +68,9 @@ public class Process { public static final int LOG_UID = 1007; /** - * Defines the UID/GID for the WIFI supplicant process. - * @hide + * Defines the UID/GID for the WIFI native processes like wificond, supplicant, hostapd, + * vendor HAL, etc. */ - @UnsupportedAppUsage public static final int WIFI_UID = 1010; /** |
