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

Unified Diff: Source/modules/vr/VRFieldOfViewInit.idl

Issue 848053002: Adding WebVR interface to Blink (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Addressed feedback from philipj@opera.com, rebased Created 5 years, 10 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: Source/modules/vr/VRFieldOfViewInit.idl
diff --git a/Source/core/animation/AnimationEffect.idl b/Source/modules/vr/VRFieldOfViewInit.idl
similarity index 52%
copy from Source/core/animation/AnimationEffect.idl
copy to Source/modules/vr/VRFieldOfViewInit.idl
index f5dc6ce2f5788ac2b080b806ce9f3afba8188b3f..8166838b26640081167b2eecb797bfb3cf693a8c 100644
--- a/Source/core/animation/AnimationEffect.idl
+++ b/Source/modules/vr/VRFieldOfViewInit.idl
@@ -2,9 +2,9 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-[
- RuntimeEnabled=WebAnimationsAPI,
- NoInterfaceObject,
- WillBeGarbageCollected
-] interface AnimationEffect {
+dictionary VRFieldOfViewInit {
philipj_slow 2015/02/23 02:33:10 Does adding RuntimeEnabled not make any difference
+ double upDegrees = 0.0;
+ double rightDegrees = 0.0;
+ double downDegrees = 0.0;
+ double leftDegrees = 0.0;
};

Powered by Google App Engine
This is Rietveld 408576698