| 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_VR_SERVICE_IMPL_H | 5 #ifndef DEVICE_VR_VR_SERVICE_IMPL_H |
| 6 #define DEVICE_VR_VR_SERVICE_IMPL_H | 6 #define DEVICE_VR_VR_SERVICE_IMPL_H |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 // Mojo connection handling. | 32 // Mojo connection handling. |
| 33 DEVICE_VR_EXPORT void Bind(mojo::InterfaceRequest<VRService> request); | 33 DEVICE_VR_EXPORT void Bind(mojo::InterfaceRequest<VRService> request); |
| 34 void RemoveFromDeviceManager(); | 34 void RemoveFromDeviceManager(); |
| 35 | 35 |
| 36 // mojom::VRService implementation | 36 // mojom::VRService implementation |
| 37 void SetClient(VRServiceClientPtr client) override; | 37 void SetClient(VRServiceClientPtr client) override; |
| 38 void GetDisplays(const GetDisplaysCallback& callback) override; | 38 void GetDisplays(const GetDisplaysCallback& callback) override; |
| 39 void GetPose(uint32_t index, const GetPoseCallback& callback) override; | 39 void GetPose(uint32_t index, const GetPoseCallback& callback) override; |
| 40 void ResetPose(uint32_t index) override; | 40 void ResetPose(uint32_t index) override; |
| 41 | 41 |
| 42 void RequestPresent(uint32_t index) override; |
| 43 void ExitPresent(uint32_t index) override; |
| 44 void SubmitFrame(uint32_t index) override; |
| 45 void UpdateLayerBounds(uint32_t index, |
| 46 VRLayerBoundsPtr leftBounds, |
| 47 VRLayerBoundsPtr rightBounds) override; |
| 48 |
| 42 std::unique_ptr<mojo::Binding<VRService>> binding_; | 49 std::unique_ptr<mojo::Binding<VRService>> binding_; |
| 43 VRServiceClientPtr client_; | 50 VRServiceClientPtr client_; |
| 44 | 51 |
| 45 DISALLOW_COPY_AND_ASSIGN(VRServiceImpl); | 52 DISALLOW_COPY_AND_ASSIGN(VRServiceImpl); |
| 46 }; | 53 }; |
| 47 | 54 |
| 48 } // namespace device | 55 } // namespace device |
| 49 | 56 |
| 50 #endif // DEVICE_VR_VR_SERVICE_IMPL_H | 57 #endif // DEVICE_VR_VR_SERVICE_IMPL_H |
| OLD | NEW |