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

Unified Diff: media/capture/video_capture_types.h

Issue 2609863004: Pass camera facing to WebKit (Closed)
Patch Set: address review comment Created 3 years, 11 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
Index: media/capture/video_capture_types.h
diff --git a/media/capture/video_capture_types.h b/media/capture/video_capture_types.h
index 7a6246beaf6cd2af413654378a8a60475302feff..c9461b528296e8666739e713b578169efdcd518a 100644
--- a/media/capture/video_capture_types.h
+++ b/media/capture/video_capture_types.h
@@ -28,6 +28,17 @@ enum VideoPixelStorage {
PIXEL_STORAGE_MAX = PIXEL_STORAGE_CPU,
};
+enum class VideoFacingMode {
+ // The source is facing toward the user (a self-view camera).
+ USER = 0,
+ // The source is facing away from the user (viewing the environment).
+ ENVIRONMENT,
+ // The source is facing to the left of the user.
+ LEFT,
+ // The source is facing to the right of the user.
+ RIGHT,
mcasas 2017/01/11 22:24:59 I'd add here NONE/UNKNOWN or similar.
shenghao 2017/01/12 08:10:48 Done.
+};
+
// Policies for capture devices that have source content that varies in size.
// It is up to the implementation how the captured content will be transformed
// (e.g., scaling and/or letterboxing) in order to produce video frames that

Powered by Google App Engine
This is Rietveld 408576698