blob: acc0967d1e3256224faa16bfde7c8419fc406088 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef mozilla_dom_GamepadServiceType_h_
#define mozilla_dom_GamepadServiceType_h_
namespace mozilla{
namespace dom{
// Standard channel is used for managing gamepads that
// are from GamepadPlatformService. VR channel
// is for gamepads that are from VRManagerChild.
enum class GamepadServiceType : uint16_t {
Standard,
VR,
NumGamepadServiceType
};
}// namespace dom
}// namespace mozilla
#endif // mozilla_dom_GamepadServiceType_h_
|