blob: 2e123db7f3be4baf1772975ceb60523693158dd4 (
plain) (
blame)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
--- services/device/usb/usb_service_fake.h.orig 2022-10-29 13:32:26 UTC
+++ services/device/usb/usb_service_fake.h
@@ -0,0 +1,48 @@
+// Copyright 2015 The Chromium Authors
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef SERVICES_DEVICE_USB_USB_SERVICE_IMPL_H_
+#define SERVICES_DEVICE_USB_USB_SERVICE_IMPL_H_
+
+#include "services/device/usb/usb_service.h"
+
+#include <stddef.h>
+
+#include <map>
+#include <set>
+#include <string>
+#include <vector>
+
+#include "base/containers/queue.h"
+#include "base/memory/weak_ptr.h"
+#include "build/build_config.h"
+#include "services/device/usb/usb_context.h"
+#include "services/device/usb/usb_device_impl.h"
+#include "third_party/abseil-cpp/absl/types/optional.h"
+
+namespace device {
+
+class UsbDeviceImpl;
+
+class UsbServiceImpl final : public UsbService {
+ public:
+ UsbServiceImpl();
+
+ UsbServiceImpl(const UsbServiceImpl&) = delete;
+ UsbServiceImpl& operator=(const UsbServiceImpl&) = delete;
+
+ ~UsbServiceImpl() override;
+
+ private:
+ // device::UsbService implementation
+ void GetDevices(GetDevicesCallback callback) override;
+
+ void OnUsbContext(scoped_refptr<UsbContext> context);
+
+ scoped_refptr<base::SequencedTaskRunner> task_runner_;
+};
+
+} // namespace device
+
+#endif // SERVICES_DEVICE_USB_USB_SERVICE_IMPL_H_
|