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

Side by Side Diff: Source/modules/vr/VREyeParameters.h

Issue 1165223006: Move WebVR public headers into public/platform/modules/vr (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed mismatched forward declaration Created 5 years, 6 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 unified diff | Download patch
« no previous file with comments | « Source/modules/vr/VRController.h ('k') | Source/modules/vr/VRFieldOfView.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef VREyeParameters_h 5 #ifndef VREyeParameters_h
6 #define VREyeParameters_h 6 #define VREyeParameters_h
7 7
8 #include "bindings/core/v8/ScriptWrappable.h" 8 #include "bindings/core/v8/ScriptWrappable.h"
9 #include "core/dom/DOMPoint.h" 9 #include "core/dom/DOMPoint.h"
10 #include "core/dom/DOMRect.h" 10 #include "core/dom/DOMRect.h"
11 #include "modules/vr/VRFieldOfView.h" 11 #include "modules/vr/VRFieldOfView.h"
12 #include "platform/heap/Handle.h" 12 #include "platform/heap/Handle.h"
13 #include "public/platform/WebVR.h" 13 #include "public/platform/modules/vr/WebVR.h"
14 #include "wtf/Forward.h" 14 #include "wtf/Forward.h"
15 15
16 namespace blink { 16 namespace blink {
17 17
18 class VREyeParameters final : public GarbageCollected<VREyeParameters>, public S criptWrappable { 18 class VREyeParameters final : public GarbageCollected<VREyeParameters>, public S criptWrappable {
19 DEFINE_WRAPPERTYPEINFO(); 19 DEFINE_WRAPPERTYPEINFO();
20 public: 20 public:
21 static VREyeParameters* create() 21 static VREyeParameters* create()
22 { 22 {
23 return new VREyeParameters(); 23 return new VREyeParameters();
(...skipping 18 matching lines...) Expand all
42 Member<VRFieldOfView> m_recommendedFieldOfView; 42 Member<VRFieldOfView> m_recommendedFieldOfView;
43 Member<DOMPoint> m_eyeTranslation; 43 Member<DOMPoint> m_eyeTranslation;
44 44
45 Member<VRFieldOfView> m_currentFieldOfView; 45 Member<VRFieldOfView> m_currentFieldOfView;
46 Member<DOMRect> m_renderRect; 46 Member<DOMRect> m_renderRect;
47 }; 47 };
48 48
49 } // namespace blink 49 } // namespace blink
50 50
51 #endif // VREyeParameters_h 51 #endif // VREyeParameters_h
OLDNEW
« no previous file with comments | « Source/modules/vr/VRController.h ('k') | Source/modules/vr/VRFieldOfView.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698