// 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. #ifndef SERVICES_DEVICE_HID_HID_CONNECTION_LINUX_H_ #define SERVICES_DEVICE_HID_HID_CONNECTION_LINUX_H_ #include <stddef.h> #include <stdint.h> #include "base/files/scoped_file.h" #include "base/memory/weak_ptr.h" #include "base/threading/sequence_bound.h" #include "services/device/hid/hid_connection.h" namespace base { class SequencedTaskRunner; } namespace device { class HidConnectionLinux : public HidConnection { … }; } // namespace device #endif // SERVICES_DEVICE_HID_HID_CONNECTION_LINUX_H_