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

Side by Side Diff: device/vr/vr_device.h

Issue 2471433002: Implement WebVR presentation pausing for VR Shell Menu Mode (Closed)
Patch Set: Add comments to VRDisplay Created 4 years, 1 month 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
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 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 VRDeviceProvider; 22 class VRDeviceProvider;
23 class VRDisplayImpl; 23 class VRDisplayImpl;
24 class VRServiceImpl; 24 class VRServiceImpl;
25 25
26 const unsigned int VR_DEVICE_LAST_ID = 0xFFFFFFFF; 26 const unsigned int VR_DEVICE_LAST_ID = 0xFFFFFFFF;
27 27
28 class DEVICE_VR_EXPORT VRDevice { 28 class DEVICE_VR_EXPORT VRDevice {
29 public: 29 public:
30 explicit VRDevice(VRDeviceProvider* provider); 30 explicit VRDevice(scoped_refptr<VRDeviceProvider> provider);
31 virtual ~VRDevice(); 31 virtual ~VRDevice();
32 32
33 VRDeviceProvider* provider() const { return provider_; } 33 scoped_refptr<VRDeviceProvider> provider() const;
34 unsigned int id() const { return id_; } 34 unsigned int id() const { return id_; }
35 35
36 virtual mojom::VRDisplayInfoPtr GetVRDevice() = 0; 36 virtual mojom::VRDisplayInfoPtr GetVRDevice() = 0;
37 virtual mojom::VRPosePtr GetPose(VRServiceImpl* service) = 0; 37 virtual mojom::VRPosePtr GetPose(VRServiceImpl* service) = 0;
38 virtual void ResetPose(VRServiceImpl* service) = 0; 38 virtual void ResetPose(VRServiceImpl* service) = 0;
39 39
40 virtual bool RequestPresent(VRServiceImpl* service, bool secure_origin) = 0; 40 virtual bool RequestPresent(VRServiceImpl* service, bool secure_origin) = 0;
41 virtual void ExitPresent(VRServiceImpl* service) = 0; 41 virtual void ExitPresent(VRServiceImpl* service) = 0;
42 virtual void SubmitFrame(VRServiceImpl* service, mojom::VRPosePtr pose) = 0; 42 virtual void SubmitFrame(VRServiceImpl* service, mojom::VRPosePtr pose) = 0;
43 virtual void UpdateLayerBounds(VRServiceImpl* service, 43 virtual void UpdateLayerBounds(VRServiceImpl* service,
44 mojom::VRLayerBoundsPtr leftBounds, 44 mojom::VRLayerBoundsPtr leftBounds,
45 mojom::VRLayerBoundsPtr rightBounds) = 0; 45 mojom::VRLayerBoundsPtr rightBounds) = 0;
46 46
47 virtual void AddService(VRServiceImpl* service); 47 virtual void AddService(VRServiceImpl* service);
48 virtual void RemoveService(VRServiceImpl* service); 48 virtual void RemoveService(VRServiceImpl* service);
49 49
50 // TODO(shaobo.yan@intel.com): Checks should be done against VRDisplayImpl and 50 // TODO(shaobo.yan@intel.com): Checks should be done against VRDisplayImpl and
51 // the name should be considered. 51 // the name should be considered.
52 virtual bool IsAccessAllowed(VRServiceImpl* service); 52 virtual bool IsAccessAllowed(VRServiceImpl* service);
53 virtual bool IsPresentingService(VRServiceImpl* service); 53 virtual bool IsPresentingService(VRServiceImpl* service);
54 54
55 virtual void OnDisplayChanged(); 55 virtual void OnDisplayChanged();
56 virtual void OnExitPresent(VRServiceImpl* service); 56 virtual void OnExitPresent(VRServiceImpl* service);
57 virtual void OnDisplayBlur();
58 virtual void OnDisplayFocus();
57 59
58 protected: 60 protected:
59 // Each Service have one VRDisplay with one VRDevice. 61 // Each Service have one VRDisplay with one VRDevice.
60 // TODO(shaobo.yan@intel.com): Since the VRDisplayImpl knows its VRServiceImpl 62 // TODO(shaobo.yan@intel.com): Since the VRDisplayImpl knows its VRServiceImpl
61 // we should 63 // we should
62 // only need to store the VRDisplayImpl. 64 // only need to store the VRDisplayImpl.
63 using DisplayClientMap = std::map<VRServiceImpl*, VRDisplayImpl*>; 65 using DisplayClientMap = std::map<VRServiceImpl*, VRDisplayImpl*>;
64 DisplayClientMap displays_; 66 DisplayClientMap displays_;
65 67
66 // TODO(shaobo.yan@intel.com): Should track presenting VRDisplayImpl instead. 68 // TODO(shaobo.yan@intel.com): Should track presenting VRDisplayImpl instead.
67 VRServiceImpl* presenting_service_; 69 VRServiceImpl* presenting_service_;
68 70
69 private: 71 private:
70 VRDeviceProvider* provider_; 72 scoped_refptr<VRDeviceProvider> provider_;
71 unsigned int id_; 73 unsigned int id_;
72 74
73 static unsigned int next_id_; 75 static unsigned int next_id_;
74 76
75 DISALLOW_COPY_AND_ASSIGN(VRDevice); 77 DISALLOW_COPY_AND_ASSIGN(VRDevice);
76 }; 78 };
77 79
78 } // namespace device 80 } // namespace device
79 81
80 #endif // DEVICE_VR_VR_DEVICE_H 82 #endif // DEVICE_VR_VR_DEVICE_H
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698