From bceb382572317df111d94f31edab70d4064ce033 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Mon, 22 Jan 2018 12:26:39 -0500 Subject: Use the correct value for Process.WEBVIEW_ZYGOTE_UID. When the libcutils constant was added there a merge conflict, which caused the AID_WEBVIEW_ZYGOTE value to land with a different value than the Java-side Process value. Nothing yet uses the Process constant, so there were no ill effects. Test: m Change-Id: I8cc87bce1ddbdcdaf79d85c828d86837e96cce21 --- core/java/android/os/Process.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/java/android/os/Process.java') diff --git a/core/java/android/os/Process.java b/core/java/android/os/Process.java index 0874d93e8262..9ad5ca41b474 100644 --- a/core/java/android/os/Process.java +++ b/core/java/android/os/Process.java @@ -143,7 +143,7 @@ public class Process { * Defines the UID/GID for the WebView zygote process. * @hide */ - public static final int WEBVIEW_ZYGOTE_UID = 1051; + public static final int WEBVIEW_ZYGOTE_UID = 1053; /** * Defines the UID used for resource tracking for OTA updates. -- cgit v1.2.3