Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5f4eb993 authored by Kunal Malhotra's avatar Kunal Malhotra Committed by Automerger Merge Worker
Browse files

Merge "Creating internal methods for FGS type logging" into udc-dev am: 5f825286

parents f8071db1 5f825286
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -18738,13 +18738,17 @@ public class ActivityManagerService extends IActivityManager.Stub
        @Override
        public void logFgsApiBegin(@ForegroundServiceApiType int apiType,
                int uid, int pid) {
            ActivityManagerService.this.logFgsApiBegin(apiType, uid, pid);
            synchronized (this) {
                mServices.logFgsApiBeginLocked(apiType, uid, pid);
            }
        }
        @Override
        public void logFgsApiEnd(@ForegroundServiceApiType int apiType,
                int uid, int pid) {
            ActivityManagerService.this.logFgsApiEnd(apiType, uid, pid);
            synchronized (this) {
                mServices.logFgsApiEndLocked(apiType, uid, pid);
            }
        }
        @Override