| Server IP : 82.208.35.60 / Your IP : 216.73.216.89 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/ports/www/iridium/files/ |
Upload File : |
--- services/device/hid/hid_connection_fido.h.orig 2022-03-28 18:11:04 UTC
+++ services/device/hid/hid_connection_fido.h
@@ -0,0 +1,57 @@
+// Copyright (c) 2020 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 SERVICE_DEVICE_HID_HID_CONNECTION_FIDO_H_
+#define SERVICE_DEVICE_HID_HID_CONNECTION_FIDO_H_
+
+#include "base/files/scoped_file.h"
+#include "base/memory/ptr_util.h"
+#include "base/memory/ref_counted_memory.h"
+#include "base/memory/weak_ptr.h"
+#include "base/sequence_checker.h"
+#include "services/device/hid/hid_connection.h"
+
+namespace device {
+
+class HidConnectionFido : public HidConnection {
+public:
+ HidConnectionFido(
+ scoped_refptr<HidDeviceInfo> device_info, base::ScopedFD fd,
+ scoped_refptr<base::SequencedTaskRunner> blocking_task_runner,
+ bool allow_protected_reports, bool allow_fido_reports);
+
+private:
+ friend class base::RefCountedThreadSafe<HidConnectionFido>;
+ class BlockingTaskHelper;
+
+ HidConnectionFido(const HidConnectionFido&) = delete;
+ HidConnectionFido& operator=(const HidConnectionFido&) = delete;
+
+ ~HidConnectionFido() override;
+
+ // HidConnection implementation.
+ void PlatformClose() override;
+ void PlatformWrite(scoped_refptr<base::RefCountedBytes> buffer,
+ WriteCallback callback) override;
+ void PlatformGetFeatureReport(uint8_t report_id,
+ ReadCallback callback) override;
+ void PlatformSendFeatureReport(scoped_refptr<base::RefCountedBytes> buffer,
+ WriteCallback callback) override;
+
+ const scoped_refptr<base::SequencedTaskRunner> blocking_task_runner_;
+ const scoped_refptr<base::SequencedTaskRunner> task_runner_;
+
+ SEQUENCE_CHECKER(sequence_checker_);
+
+ base::WeakPtrFactory<HidConnectionFido> weak_factory_;
+
+ // |helper_| lives on the sequence to which |blocking_task_runner_| posts
+ // tasks so all calls must be posted there including this object's
+ // destruction.
+ std::unique_ptr<BlockingTaskHelper> helper_;
+};
+
+} // namespace device
+
+#endif // SERVICE_DEVICE_HID_HID_CONNECTION_FIDO_H_