| OLD | NEW |
| 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 DEVICE_VR_VR_DEVICE_H | 5 #ifndef DEVICE_VR_VR_DEVICE_H |
| 6 #define DEVICE_VR_VR_DEVICE_H | 6 #define DEVICE_VR_VR_DEVICE_H |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "device/vr/vr_export.h" | 9 #include "device/vr/vr_export.h" |
| 10 #include "device/vr/vr_service.mojom.h" | 10 #include "device/vr/vr_service.mojom.h" |
| 11 | 11 |
| 12 namespace blink { | 12 namespace blink { |
| 13 struct WebHMDSensorState; | 13 struct WebHMDSensorState; |
| 14 } | 14 } |
| 15 | 15 |
| 16 namespace ui { | 16 namespace ui { |
| 17 class BaseWindow; | 17 class BaseWindow; |
| 18 } | 18 } |
| 19 | 19 |
| 20 namespace device { | 20 namespace device { |
| 21 | 21 |
| 22 class VRServiceImpl; |
| 22 class VRDeviceProvider; | 23 class VRDeviceProvider; |
| 23 | 24 |
| 24 const unsigned int VR_DEVICE_LAST_ID = 0xFFFFFFFF; | 25 const unsigned int VR_DEVICE_LAST_ID = 0xFFFFFFFF; |
| 25 | 26 |
| 26 class DEVICE_VR_EXPORT VRDevice { | 27 class DEVICE_VR_EXPORT VRDevice { |
| 27 public: | 28 public: |
| 28 explicit VRDevice(VRDeviceProvider* provider); | 29 explicit VRDevice(VRDeviceProvider* provider); |
| 29 virtual ~VRDevice(); | 30 virtual ~VRDevice(); |
| 30 | 31 |
| 31 VRDeviceProvider* provider() const { return provider_; } | 32 VRDeviceProvider* provider() const { return provider_; } |
| 32 unsigned int id() const { return id_; } | 33 unsigned int id() const { return id_; } |
| 33 | 34 |
| 34 virtual VRDisplayPtr GetVRDevice() = 0; | 35 virtual VRDisplayPtr GetVRDevice() = 0; |
| 35 virtual VRPosePtr GetPose() = 0; | 36 virtual VRPosePtr GetPose(VRServiceImpl* service) = 0; |
| 36 virtual void ResetPose() = 0; | 37 virtual void ResetPose(VRServiceImpl* service) = 0; |
| 37 | 38 |
| 38 virtual bool RequestPresent(bool secure_origin); | 39 virtual bool RequestPresent(VRServiceImpl* service, bool secure_origin) = 0; |
| 39 virtual void ExitPresent(){}; | 40 virtual void ExitPresent(VRServiceImpl* service) = 0; |
| 40 virtual void SubmitFrame(VRPosePtr pose){}; | 41 virtual void SubmitFrame(VRServiceImpl* service, VRPosePtr pose) = 0; |
| 41 virtual void UpdateLayerBounds(VRLayerBoundsPtr leftBounds, | 42 virtual void UpdateLayerBounds(VRServiceImpl* service, |
| 42 VRLayerBoundsPtr rightBounds){}; | 43 VRLayerBoundsPtr leftBounds, |
| 44 VRLayerBoundsPtr rightBounds) = 0; |
| 45 |
| 46 virtual void RegisterDisplayService(VRServiceImpl* service, |
| 47 VRDisplayServicePtr display_service); |
| 48 virtual void RemoveService(VRServiceImpl* service); |
| 49 virtual bool CheckAccessAllowed(VRServiceImpl* service); |
| 50 virtual bool IsPresentingService(VRServiceImpl* service); |
| 51 |
| 52 virtual void OnDisplayChanged() = 0; |
| 53 virtual void OnExitPresent(VRServiceImpl* service) = 0; |
| 54 virtual void OnDisplayConnected() = 0; |
| 55 virtual void OnDisplayDisconnected() = 0; |
| 56 |
| 57 protected: |
| 58 using DisplayServiceMap = std::map<VRServiceImpl*, VRDisplayServicePtr>; |
| 59 DisplayServiceMap display_services_; |
| 60 |
| 61 VRServiceImpl* presenting_service_; |
| 43 | 62 |
| 44 private: | 63 private: |
| 45 VRDeviceProvider* provider_; | 64 VRDeviceProvider* provider_; |
| 46 unsigned int id_; | 65 unsigned int id_; |
| 47 | 66 |
| 48 static unsigned int next_id_; | 67 static unsigned int next_id_; |
| 49 | 68 |
| 50 DISALLOW_COPY_AND_ASSIGN(VRDevice); | 69 DISALLOW_COPY_AND_ASSIGN(VRDevice); |
| 51 }; | 70 }; |
| 52 | 71 |
| 53 } // namespace device | 72 } // namespace device |
| 54 | 73 |
| 55 #endif // DEVICE_VR_VR_DEVICE_H | 74 #endif // DEVICE_VR_VR_DEVICE_H |
| OLD | NEW |