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

Commit b95729a4 authored by Jean-Michel Trivi's avatar Jean-Michel Trivi Committed by Android (Google) Code Review
Browse files

Merge "AudioService: add missing GuardedBy annotation" into main

parents 0943bee0 5b7ca64d
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -1164,9 +1164,11 @@ public class AudioService extends IAudioService.Stub
    @GuardedBy("mAccessibilityServiceUidsLock")
    private int[] mAccessibilityServiceUids;
    // Input Method
    private final Object mInputMethodServiceUidLock = new Object();
    // Uid of the active input method service to check if caller is the one or not.
    @GuardedBy("mInputMethodServiceUidLock")
    private int mInputMethodServiceUid = android.os.Process.INVALID_UID;
    private final Object mInputMethodServiceUidLock = new Object();
    private int mEncodedSurroundMode;
    private String mEnabledSurroundFormats;