Merge "Updating API to be one way." into udc-dev am: 17d5ffdf00 am: c85c44a464

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/22914505

Change-Id: If088e7329449fbb4f19a44111ebfe41d36fda48b
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Kunal Malhotra
2023-05-12 06:07:29 +00:00
committed by Automerger Merge Worker

View File

@@ -147,13 +147,13 @@ interface IActivityManager {
int checkPermission(in String permission, int pid, int uid); int checkPermission(in String permission, int pid, int uid);
/** Logs start of an API call to associate with an FGS, used for FGS Type Metrics */ /** Logs start of an API call to associate with an FGS, used for FGS Type Metrics */
void logFgsApiBegin(int apiType, int appUid, int appPid); oneway void logFgsApiBegin(int apiType, int appUid, int appPid);
/** Logs stop of an API call to associate with an FGS, used for FGS Type Metrics */ /** Logs stop of an API call to associate with an FGS, used for FGS Type Metrics */
void logFgsApiEnd(int apiType, int appUid, int appPid); oneway void logFgsApiEnd(int apiType, int appUid, int appPid);
/** Logs API state change to associate with an FGS, used for FGS Type Metrics */ /** Logs API state change to associate with an FGS, used for FGS Type Metrics */
void logFgsApiStateChanged(int apiType, int state, int appUid, int appPid); oneway void logFgsApiStateChanged(int apiType, int state, int appUid, int appPid);
// =============== End of transactions used on native side as well ============================ // =============== End of transactions used on native side as well ============================
// Special low-level communication with activity manager. // Special low-level communication with activity manager.