summaryrefslogtreecommitdiff
path: root/java/com/android/incallui/call/InCallVideoCallCallbackNotifier.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/com/android/incallui/call/InCallVideoCallCallbackNotifier.java')
-rw-r--r--java/com/android/incallui/call/InCallVideoCallCallbackNotifier.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/java/com/android/incallui/call/InCallVideoCallCallbackNotifier.java b/java/com/android/incallui/call/InCallVideoCallCallbackNotifier.java
index ff94120bf..23a3dad05 100644
--- a/java/com/android/incallui/call/InCallVideoCallCallbackNotifier.java
+++ b/java/com/android/incallui/call/InCallVideoCallCallbackNotifier.java
@@ -27,13 +27,13 @@ import java.util.concurrent.ConcurrentHashMap;
public class InCallVideoCallCallbackNotifier {
/** Singleton instance of this class. */
- private static InCallVideoCallCallbackNotifier sInstance = new InCallVideoCallCallbackNotifier();
+ private static InCallVideoCallCallbackNotifier instance = new InCallVideoCallCallbackNotifier();
/**
* ConcurrentHashMap constructor params: 8 is initial table size, 0.9f is load factor before
* resizing, 1 means we only expect a single thread to access the map so make only a single shard
*/
- private final Set<SurfaceChangeListener> mSurfaceChangeListeners =
+ private final Set<SurfaceChangeListener> surfaceChangeListeners =
Collections.newSetFromMap(new ConcurrentHashMap<SurfaceChangeListener, Boolean>(8, 0.9f, 1));
/** Private constructor. Instance should only be acquired through getRunningInstance(). */
@@ -41,7 +41,7 @@ public class InCallVideoCallCallbackNotifier {
/** Static singleton accessor method. */
public static InCallVideoCallCallbackNotifier getInstance() {
- return sInstance;
+ return instance;
}
/**
@@ -51,7 +51,7 @@ public class InCallVideoCallCallbackNotifier {
*/
public void addSurfaceChangeListener(@NonNull SurfaceChangeListener listener) {
Objects.requireNonNull(listener);
- mSurfaceChangeListeners.add(listener);
+ surfaceChangeListeners.add(listener);
}
/**
@@ -61,7 +61,7 @@ public class InCallVideoCallCallbackNotifier {
*/
public void removeSurfaceChangeListener(@Nullable SurfaceChangeListener listener) {
if (listener != null) {
- mSurfaceChangeListeners.remove(listener);
+ surfaceChangeListeners.remove(listener);
}
}
@@ -73,7 +73,7 @@ public class InCallVideoCallCallbackNotifier {
* @param height New peer height.
*/
public void peerDimensionsChanged(DialerCall call, int width, int height) {
- for (SurfaceChangeListener listener : mSurfaceChangeListeners) {
+ for (SurfaceChangeListener listener : surfaceChangeListeners) {
listener.onUpdatePeerDimensions(call, width, height);
}
}
@@ -86,7 +86,7 @@ public class InCallVideoCallCallbackNotifier {
* @param height The new camera video height.
*/
public void cameraDimensionsChanged(DialerCall call, int width, int height) {
- for (SurfaceChangeListener listener : mSurfaceChangeListeners) {
+ for (SurfaceChangeListener listener : surfaceChangeListeners) {
listener.onCameraDimensionsChange(call, width, height);
}
}