| Index: device/vr/vr_service.mojom
|
| diff --git a/device/vr/vr_service.mojom b/device/vr/vr_service.mojom
|
| index fb9bdb564083806bae14274cf8ccbf444cabcf8b..253513d50c1802636c6416f244d354a9fe48b5fd 100644
|
| --- a/device/vr/vr_service.mojom
|
| +++ b/device/vr/vr_service.mojom
|
| @@ -55,8 +55,14 @@ struct VRDisplay {
|
| };
|
|
|
| interface VRService {
|
| + SetClient(VRServiceClient client);
|
| +
|
| GetDisplays() => (array<VRDisplay> displays);
|
| [Sync]
|
| GetPose(uint32 index) => (VRPose pose);
|
| ResetPose(uint32 index);
|
| };
|
| +
|
| +interface VRServiceClient {
|
| + OnDisplayChanged(VRDisplay display);
|
| +};
|
|
|