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

Unified Diff: third_party/WebKit/public/platform/WebMediaStreamTrack.h

Issue 2606983002: Media Capture Depth Stream Extensions API: focal length and depth range. (Closed)
Patch Set: review #25 fix. Thanks kinuko@. 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: third_party/WebKit/public/platform/WebMediaStreamTrack.h
diff --git a/third_party/WebKit/public/platform/WebMediaStreamTrack.h b/third_party/WebKit/public/platform/WebMediaStreamTrack.h
index d9191b721badcf0e80afb731e5014a181312a689..13e3d7aa151a28b68493e027d010d570d54f5beb 100644
--- a/third_party/WebKit/public/platform/WebMediaStreamTrack.h
+++ b/third_party/WebKit/public/platform/WebMediaStreamTrack.h
@@ -51,6 +51,11 @@ class WebMediaStreamTrack {
long width = -1;
long height = -1;
WebString deviceId;
+ // Media Capture Depth Stream Extensions.
+ double focalLengthX = 0.0;
+ double focalLengthY = 0.0;
+ double depthNear = 0.0;
+ double depthFar = 0.0;
mcasas 2017/01/11 23:18:20 What happened to |focalLength|? https://www.w3.or
aleksandar.stojiljkovic 2017/01/12 14:13:59 Replaced [focalLength, horizontalFieldOfView and v
};
class TrackData {

Powered by Google App Engine
This is Rietveld 408576698