From c2d27df960b71589d8d6dc2704dc76072c6b885f Mon Sep 17 00:00:00 2001 From: Adam Bookatz Date: Tue, 11 Aug 2020 16:57:09 -0700 Subject: [PATCH] AM.setProcessMemoryTrimLevel: uid -> userId name The name of the parameter should be userId, not uid. All callers and implementations seem to use userId. Test: compiles Bug: 163626967 Change-Id: I5a733075f8a0f19b44c01f65221c04694a178e0c --- core/java/android/app/IActivityManager.aidl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/java/android/app/IActivityManager.aidl b/core/java/android/app/IActivityManager.aidl index 93dfc79109a62..f37ca61ba69fb 100644 --- a/core/java/android/app/IActivityManager.aidl +++ b/core/java/android/app/IActivityManager.aidl @@ -461,7 +461,7 @@ interface IActivityManager { @UnsupportedAppUsage Rect getTaskBounds(int taskId); @UnsupportedAppUsage - boolean setProcessMemoryTrimLevel(in String process, int uid, int level); + boolean setProcessMemoryTrimLevel(in String process, int userId, int level); // Start of L transactions