Merge "[Output Switcher] Use Thread-safe list to store mediaDevices in MediaManager" into tm-dev
This commit is contained in:
@@ -32,7 +32,7 @@ public abstract class MediaManager {
|
||||
private static final String TAG = "MediaManager";
|
||||
|
||||
protected final Collection<MediaDeviceCallback> mCallbacks = new CopyOnWriteArrayList<>();
|
||||
protected final List<MediaDevice> mMediaDevices = new ArrayList<>();
|
||||
protected final List<MediaDevice> mMediaDevices = new CopyOnWriteArrayList<>();
|
||||
|
||||
protected Context mContext;
|
||||
protected Notification mNotification;
|
||||
|
||||
Reference in New Issue
Block a user