Constructor in Camera1Enumerator should be public.
R=danilchap@webrtc.org TBR=magjed_webrtc Review URL: https://codereview.webrtc.org/2106863002 . Cr-Commit-Position: refs/heads/master@{#13315}
This commit is contained in:
@ -27,11 +27,11 @@ public class Camera1Enumerator implements CameraEnumerator {
|
||||
|
||||
private final boolean captureToTexture;
|
||||
|
||||
Camera1Enumerator() {
|
||||
public Camera1Enumerator() {
|
||||
this(true /* captureToTexture */);
|
||||
}
|
||||
|
||||
Camera1Enumerator(boolean captureToTexture) {
|
||||
public Camera1Enumerator(boolean captureToTexture) {
|
||||
this.captureToTexture = captureToTexture;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user