| 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_DELEGATE_H | 5 #ifndef DEVICE_VR_ANDROID_GVR_DELEGATE_H |
| 6 #define DEVICE_VR_ANDROID_GVR_DELEGATE_H | 6 #define DEVICE_VR_ANDROID_GVR_DELEGATE_H |
| 7 | 7 |
| 8 #include "device/vr/android/gvr/gvr_device_provider.h" | 8 #include "device/vr/android/gvr/gvr_device_provider.h" |
| 9 #include "device/vr/vr_export.h" | 9 #include "device/vr/vr_export.h" |
| 10 #include "third_party/gvr-android-sdk/src/libraries/headers/vr/gvr/capi/include/
gvr_types.h" | 10 #include "third_party/gvr-android-sdk/src/libraries/headers/vr/gvr/capi/include/
gvr_types.h" |
| 11 | 11 |
| 12 namespace gvr { | 12 namespace gvr { |
| 13 class GvrApi; | 13 class GvrApi; |
| 14 } // namespace gvr | 14 } // namespace gvr |
| 15 | 15 |
| 16 namespace device { | 16 namespace device { |
| 17 | 17 |
| 18 constexpr gvr::Sizei kInvalidRenderTargetSize = {0, 0}; | 18 constexpr gvr::Sizei kInvalidRenderTargetSize = {0, 0}; |
| 19 | 19 |
| 20 class DEVICE_VR_EXPORT GvrDelegate { | 20 class DEVICE_VR_EXPORT GvrDelegate { |
| 21 public: | 21 public: |
| 22 virtual void SetWebVRSecureOrigin(bool secure_origin) = 0; | 22 virtual void SetWebVRSecureOrigin(bool secure_origin) = 0; |
| 23 virtual void SubmitWebVRFrame() = 0; | 23 virtual void SubmitWebVRFrame() = 0; |
| 24 virtual void UpdateWebVRTextureBounds(const gvr::Rectf& left_bounds, | 24 virtual void UpdateWebVRTextureBounds(const gvr::Rectf& left_bounds, |
| 25 const gvr::Rectf& right_bounds) = 0; | 25 const gvr::Rectf& right_bounds) = 0; |
| 26 | |
| 27 virtual void SetGvrPoseForWebVr(const gvr::Mat4f& pose, | |
| 28 uint32_t pose_index) = 0; | |
| 29 virtual gvr::Sizei GetWebVRCompositorSurfaceSize() = 0; | 26 virtual gvr::Sizei GetWebVRCompositorSurfaceSize() = 0; |
| 30 virtual void SetWebVRRenderSurfaceSize(int width, int height) = 0; | 27 virtual void SetWebVRRenderSurfaceSize(int width, int height) = 0; |
| 31 virtual gvr::GvrApi* gvr_api() = 0; | 28 virtual gvr::GvrApi* gvr_api() = 0; |
| 32 }; | 29 }; |
| 33 | 30 |
| 34 class DEVICE_VR_EXPORT GvrDelegateProvider { | 31 class DEVICE_VR_EXPORT GvrDelegateProvider { |
| 35 public: | 32 public: |
| 36 static void SetInstance(GvrDelegateProvider* delegate_provider); | 33 static void SetInstance(GvrDelegateProvider* delegate_provider); |
| 37 static GvrDelegateProvider* GetInstance(); | 34 static GvrDelegateProvider* GetInstance(); |
| 38 | 35 |
| 39 virtual void SetDeviceProvider(GvrDeviceProvider* device_provider) = 0; | 36 virtual void SetDeviceProvider(GvrDeviceProvider* device_provider) = 0; |
| 40 virtual void RequestWebVRPresent( | 37 virtual void RequestWebVRPresent( |
| 41 const base::Callback<void(bool)>& callback) = 0; | 38 const base::Callback<void(bool)>& callback) = 0; |
| 42 virtual void ExitWebVRPresent() = 0; | 39 virtual void ExitWebVRPresent() = 0; |
| 43 virtual GvrDelegate* GetNonPresentingDelegate() = 0; | 40 virtual GvrDelegate* GetNonPresentingDelegate() = 0; |
| 44 virtual void DestroyNonPresentingDelegate() = 0; | 41 virtual void DestroyNonPresentingDelegate() = 0; |
| 45 virtual void SetListeningForActivate(bool listening) = 0; | 42 virtual void SetListeningForActivate(bool listening) = 0; |
| 46 | 43 |
| 47 private: | 44 private: |
| 48 static GvrDelegateProvider* delegate_provider_; | 45 static GvrDelegateProvider* delegate_provider_; |
| 49 }; | 46 }; |
| 50 | 47 |
| 51 } // namespace device | 48 } // namespace device |
| 52 | 49 |
| 53 #endif // DEVICE_VR_ANDROID_GVR_DELEGATE_H | 50 #endif // DEVICE_VR_ANDROID_GVR_DELEGATE_H |
| OLD | NEW |