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

Unified Diff: third_party/WebKit/Source/modules/vr/VRLayer.idl

Issue 2360083004: Changed VRLayer's left/rightBounds to match the spec (Closed)
Patch Set: Created 4 years, 3 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 | « third_party/WebKit/Source/modules/vr/VRDisplay.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/vr/VRLayer.idl
diff --git a/third_party/WebKit/Source/modules/vr/VRLayer.idl b/third_party/WebKit/Source/modules/vr/VRLayer.idl
index c31d345bb5b8f7e874301402fc417ff7939f99a7..9e9a6a53cdbd1788b0963de27e5a249deed6c87f 100644
--- a/third_party/WebKit/Source/modules/vr/VRLayer.idl
+++ b/third_party/WebKit/Source/modules/vr/VRLayer.idl
@@ -17,6 +17,6 @@ typedef HTMLCanvasElement VRSource;
// [1] top offset of the bounds (0.0 - 1.0)
// [2] width of the bounds (0.0 - 1.0)
// [3] height of the bounds (0.0 - 1.0)
- sequence<float>? leftBounds; //= [0.0, 0.0, 0.5, 1.0];
- sequence<float>? rightBounds; //= [0.5, 0.0, 0.5, 1.0];
+ sequence<float> leftBounds = []; //= [0.0, 0.0, 0.5, 1.0];
+ sequence<float> rightBounds = []; //= [0.5, 0.0, 0.5, 1.0];
};
« no previous file with comments | « third_party/WebKit/Source/modules/vr/VRDisplay.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698