summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/modules/xr/xr_input_source.idl
blob: bc0847321419e59bef6ee21a543dea14eb076e7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

enum XRHandedness {
  "left",
  "right"
};

enum XRPointerOrigin {
  "head",
  "grip",
  "screen"
};

[
    SecureContext,
    OriginTrialEnabled=WebXR
] interface XRInputSource {
  readonly attribute XRHandedness handedness;
  readonly attribute XRPointerOrigin pointerOrigin;
};