Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(176)

Unified Diff: webrtc/api/java/android/org/webrtc/Camera1Enumerator.java

Issue 2106863002: Constructor in Camera1Enumerator should be public. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/api/java/android/org/webrtc/Camera1Enumerator.java
diff --git a/webrtc/api/java/android/org/webrtc/Camera1Enumerator.java b/webrtc/api/java/android/org/webrtc/Camera1Enumerator.java
index 8523bba33224e0099ae037e52d2011b72304eaa1..a553bfef48ed5dd64af80cfade5060eddd7b303c 100644
--- a/webrtc/api/java/android/org/webrtc/Camera1Enumerator.java
+++ b/webrtc/api/java/android/org/webrtc/Camera1Enumerator.java
@@ -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;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698