blob: 14a354c8e6bbfaa8e01c49331c0ecec95dbfa1e9 [file] [log] [blame]
// Copyright 2015 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.
#ifndef USBInterface_h
#define USBInterface_h
#include "bindings/core/v8/ScriptWrappable.h"
#include "platform/heap/Heap.h"
#include "public/platform/modules/webusb/WebUSBDeviceInfo.h"
namespace blink {
class ExceptionState;
class USBAlternateInterface;
class USBConfiguration;
class USBInterface
: public GarbageCollected<USBInterface>
, public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
static USBInterface* create(const USBConfiguration*, size_t interfaceIndex);
static USBInterface* create(const USBConfiguration*, size_t interfaceNumber, ExceptionState&);
USBInterface(const USBConfiguration*, size_t interfaceIndex);
const WebUSBDeviceInfo::Interface& info() const;
uint8_t interfaceNumber() const;
HeapVector<Member<USBAlternateInterface>> alternates() const;
DECLARE_TRACE();
private:
Member<const USBConfiguration> m_configuration;
const size_t m_interfaceIndex;
};
} // namespace blink
#endif // USBInterface_h