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

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

Issue 2309523003: Plumbing through more WebVR presentation code (Closed)
Patch Set: Addressed Michael's feedack Created 4 years, 3 months 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
« no previous file with comments | « device/vr/vr_service.mojom ('k') | device/vr/vr_service_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « device/vr/vr_service.mojom ('k') | device/vr/vr_service_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698