summaryrefslogtreecommitdiffstats
path: root/device/usb/mojo/permission_provider.h
blob: 8366047cb74626546eb7dee493c7d9d89cded539 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// Copyright 2016 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 DEVICE_USB_MOJO_PERMISSION_PROVIDER_H_
#define DEVICE_USB_MOJO_PERMISSION_PROVIDER_H_

#include <stdint.h>

namespace device {
namespace usb {

class DeviceInfo;

// An implementation of this interface must be provided to a DeviceManager in
// order to implement device permission checks.
class PermissionProvider {
 public:
  PermissionProvider();
  virtual ~PermissionProvider();

  virtual bool HasDevicePermission(const DeviceInfo& device_info) const = 0;
  virtual bool HasConfigurationPermission(
      uint8_t requested_configuration,
      const DeviceInfo& device_info) const = 0;
  virtual bool HasInterfacePermission(uint8_t requested_interface,
                                      uint8_t configuration_value,
                                      const DeviceInfo& device_info) const = 0;
};

}  // namespace usb
}  // namespace device

#endif  // DEVICE_USB_MOJO_PERMISSION_PROVIDER_H_