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

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

Issue 1052903002: Migrate vr to use inlined tracing (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 8 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 | « no previous file | Source/modules/vr/HMDVRDevice.cpp » ('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 HMDVRDevice_h 5 #ifndef HMDVRDevice_h
6 #define HMDVRDevice_h 6 #define HMDVRDevice_h
7 7
8 #include "modules/vr/VRDevice.h" 8 #include "modules/vr/VRDevice.h"
9 #include "modules/vr/VREyeParameters.h" 9 #include "modules/vr/VREyeParameters.h"
10 #include "platform/heap/Handle.h" 10 #include "platform/heap/Handle.h"
(...skipping 12 matching lines...) Expand all
23 public: 23 public:
24 explicit HMDVRDevice(VRHardwareUnit*); 24 explicit HMDVRDevice(VRHardwareUnit*);
25 25
26 typedef Vector<double> DoubleVector; 26 typedef Vector<double> DoubleVector;
27 27
28 virtual void updateFromWebVRDevice(const WebVRDevice&) override; 28 virtual void updateFromWebVRDevice(const WebVRDevice&) override;
29 29
30 VREyeParameters* getEyeParameters(const String&); 30 VREyeParameters* getEyeParameters(const String&);
31 void setFieldOfView(VRFieldOfView* leftFov = 0, VRFieldOfView* rightFov = 0) ; 31 void setFieldOfView(VRFieldOfView* leftFov = 0, VRFieldOfView* rightFov = 0) ;
32 32
33 virtual void trace(Visitor*) override; 33 DECLARE_VIRTUAL_TRACE();
34 34
35 private: 35 private:
36 static VREye StringToVREye(const String&); 36 static VREye StringToVREye(const String&);
37 37
38 Member<VREyeParameters> m_eyeParametersLeft; 38 Member<VREyeParameters> m_eyeParametersLeft;
39 Member<VREyeParameters> m_eyeParametersRight; 39 Member<VREyeParameters> m_eyeParametersRight;
40 bool m_dirtyFov; 40 bool m_dirtyFov;
41 }; 41 };
42 42
43 } // namespace blink 43 } // namespace blink
44 44
45 #endif // HMDVRDevice_h 45 #endif // HMDVRDevice_h
OLDNEW
« no previous file with comments | « no previous file | Source/modules/vr/HMDVRDevice.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698