blob: 29089bdd8bc98b12d6d48dd26218cad9bfb95dc1 [file] [log] [blame]
// Copyright 2019 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.
// Filter type for HID.requestDevice.
// https://wicg.github.io/webhid/index.html#enumeration
dictionary HIDDeviceFilter {
unsigned long vendorId;
unsigned short productId;
unsigned short usagePage;
unsigned short usage;
};