diff options
Diffstat (limited to 'devel/electron33/files/patch-services_device_usb_usb__service__fake.cc')
-rw-r--r-- | devel/electron33/files/patch-services_device_usb_usb__service__fake.cc | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/devel/electron33/files/patch-services_device_usb_usb__service__fake.cc b/devel/electron33/files/patch-services_device_usb_usb__service__fake.cc deleted file mode 100644 index 03bcf21b39ab..000000000000 --- a/devel/electron33/files/patch-services_device_usb_usb__service__fake.cc +++ /dev/null @@ -1,52 +0,0 @@ ---- services/device/usb/usb_service_fake.cc.orig 2023-04-10 14:02:12 UTC -+++ services/device/usb/usb_service_fake.cc -@@ -0,0 +1,49 @@ -+// Copyright 2014 The Chromium Authors -+// Use of this source code is governed by a BSD-style license that can be -+// found in the LICENSE file. -+ -+#include "services/device/usb/usb_service_fake.h" -+ -+#include <stdint.h> -+ -+#include <list> -+#include <memory> -+#include <set> -+#include <utility> -+ -+#include "base/barrier_closure.h" -+#include "base/containers/contains.h" -+#include "base/location.h" -+#include "base/memory/ref_counted_memory.h" -+#include "base/memory/weak_ptr.h" -+#include "base/strings/string_number_conversions.h" -+#include "base/strings/utf_string_conversions.h" -+#include "base/task/sequenced_task_runner.h" -+#include "base/task/single_thread_task_runner.h" -+#include "base/task/thread_pool.h" -+#include "base/threading/scoped_blocking_call.h" -+#include "build/build_config.h" -+#include "components/device_event_log/device_event_log.h" -+#include "services/device/usb/usb_device_handle.h" -+#include "services/device/usb/usb_error.h" -+#include "services/device/usb/webusb_descriptors.h" -+ -+namespace device { -+ -+UsbServiceImpl::UsbServiceImpl() -+ : task_runner_(base::SequencedTaskRunner::GetCurrentDefault()) { -+ NOTIMPLEMENTED(); -+} -+ -+UsbServiceImpl::~UsbServiceImpl() { -+ NOTIMPLEMENTED(); -+ NotifyWillDestroyUsbService(); -+} -+ -+void UsbServiceImpl::GetDevices(GetDevicesCallback callback) { -+ NOTIMPLEMENTED(); -+ DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_); -+ UsbService::GetDevices(std::move(callback)); -+} -+ -+} // namespace device |