blob: a36a3b8ec573a73d6aebb5448ea30bcda62e4840 [file] [log] [blame]
// Copyright 2014 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.
interface GamepadButton {
readonly attribute boolean pressed;
// TODO(bajones): Enable this by default as it is part of the core spec.
[OriginTrialEnabled=WebXRGamepadSupport, MeasureAs=GamepadButtonTouched] readonly attribute boolean touched;
readonly attribute double value;
};