mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 11:19:04 +01:00
15 lines
253 B
Java
15 lines
253 B
Java
package org.briarproject.android.util;
|
|
|
|
import android.hardware.Camera;
|
|
import android.support.annotation.UiThread;
|
|
|
|
@SuppressWarnings("deprecation")
|
|
public interface PreviewConsumer {
|
|
|
|
@UiThread
|
|
void start(Camera camera);
|
|
|
|
@UiThread
|
|
void stop();
|
|
}
|