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

Commit 5f825286 authored by Kunal Malhotra's avatar Kunal Malhotra Committed by Android (Google) Code Review
Browse files

Merge "Creating internal methods for FGS type logging" into udc-dev

parents 56a7f2f1 fef76287
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