| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_ANDROID_GVR_DEVICE_PROVIDER_H | 5 #ifndef DEVICE_VR_ANDROID_GVR_DEVICE_PROVIDER_H |
| 6 #define DEVICE_VR_ANDROID_GVR_DEVICE_PROVIDER_H | 6 #define DEVICE_VR_ANDROID_GVR_DEVICE_PROVIDER_H |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "base/single_thread_task_runner.h" | 11 #include "base/single_thread_task_runner.h" |
| 12 #include "device/vr/vr_client_dispatcher.h" | 12 #include "device/vr/vr_client_dispatcher.h" |
| 13 #include "device/vr/vr_device.h" | 13 #include "device/vr/vr_device.h" |
| 14 #include "device/vr/vr_device_provider.h" | 14 #include "device/vr/vr_device_provider.h" |
| 15 #include "device/vr/vr_export.h" | 15 #include "device/vr/vr_export.h" |
| 16 | 16 |
| 17 namespace device { | 17 namespace device { |
| 18 | 18 |
| 19 class GvrDelegate; | 19 class GvrDelegate; |
| 20 class GvrDevice; | 20 class GvrDevice; |
| 21 | 21 |
| 22 class DEVICE_VR_EXPORT GvrDeviceProvider : public VRDeviceProvider { | 22 class DEVICE_VR_EXPORT GvrDeviceProvider : public VRDeviceProvider { |
| 23 public: | 23 public: |
| 24 GvrDeviceProvider(); | 24 GvrDeviceProvider(); |
| 25 ~GvrDeviceProvider() override; | |
| 26 | 25 |
| 27 void GetDevices(std::vector<VRDevice*>* devices) override; | 26 void GetDevices(std::vector<VRDevice*>* devices) override; |
| 28 void Initialize() override; | 27 void Initialize() override; |
| 29 | 28 |
| 30 // Called from GvrDevice | 29 // Called from GvrDevice. |
| 31 bool RequestPresent(); | 30 bool RequestPresent(); |
| 32 void ExitPresent(); | 31 void ExitPresent(); |
| 33 | 32 |
| 34 // Called from GvrDelegate | 33 // Called from GvrDelegate. May be called from any thread. |
| 35 void OnGvrDelegateReady(GvrDelegate* delegate); | 34 void OnGvrDelegateReady(GvrDelegate* delegate); |
| 36 void OnGvrDelegateRemoved(); | 35 void OnGvrDelegateRemoved(); |
| 37 | 36 |
| 37 // May be called from any thread. This function is likely to be called from |
| 38 // an arbitrary GL thread handling GVR controller updates. |
| 39 void OnDisplayBlur(); |
| 40 |
| 41 // May be called from any thread. This function is likely to be called from |
| 42 // an arbitrary GL thread handling GVR controller updates. |
| 43 void OnDisplayFocus(); |
| 44 |
| 38 void SetClient(VRClientDispatcher* client) override; | 45 void SetClient(VRClientDispatcher* client) override; |
| 39 | 46 |
| 40 private: | 47 private: |
| 48 ~GvrDeviceProvider() override; |
| 49 |
| 41 void GvrDelegateReady(GvrDelegate* delegate); | 50 void GvrDelegateReady(GvrDelegate* delegate); |
| 42 void GvrDelegateRemoved(); | 51 void GvrDelegateRemoved(); |
| 43 | 52 |
| 44 std::unique_ptr<VRClientDispatcher> client_; | 53 std::unique_ptr<VRClientDispatcher> client_; |
| 45 std::unique_ptr<GvrDevice> vr_device_; | 54 std::unique_ptr<GvrDevice> vr_device_; |
| 46 | 55 |
| 47 scoped_refptr<base::SingleThreadTaskRunner> main_thread_task_runner_; | 56 scoped_refptr<base::SingleThreadTaskRunner> main_thread_task_runner_; |
| 48 | 57 |
| 49 DISALLOW_COPY_AND_ASSIGN(GvrDeviceProvider); | 58 DISALLOW_COPY_AND_ASSIGN(GvrDeviceProvider); |
| 50 }; | 59 }; |
| 51 | 60 |
| 52 } // namespace device | 61 } // namespace device |
| 53 | 62 |
| 54 #endif // DEVICE_VR_ANDROID_GVR_DEVICE_PROVIDER_H | 63 #endif // DEVICE_VR_ANDROID_GVR_DEVICE_PROVIDER_H |
| OLD | NEW |