// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "device/gamepad/hid_writer_linux.h" #include <unistd.h> #include "base/posix/eintr_wrapper.h" namespace device { HidWriterLinux::HidWriterLinux(const base::ScopedFD& fd) : … { … } HidWriterLinux::~HidWriterLinux() = default; size_t HidWriterLinux::WriteOutputReport(base::span<const uint8_t> report) { … } } // namespace device