// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef DEVICE_BLUETOOTH_SOCKET_H_ #define DEVICE_BLUETOOTH_SOCKET_H_ #include <memory> #include <string> #include "base/memory/scoped_refptr.h" #include "base/memory/weak_ptr.h" #include "device/bluetooth/bluetooth_socket.h" #include "device/bluetooth/public/mojom/adapter.mojom.h" #include "mojo/public/cpp/system/data_pipe.h" #include "mojo/public/cpp/system/simple_watcher.h" namespace net { class IOBuffer; } // namespace net namespace bluetooth { // Implementation of Mojo Socket in // device/bluetooth/public/mojom/adapter.mojom. // It handles requests to interact with a Socket. // Uses the platform abstraction of //device/bluetooth. // An instance of this class is constructed by Adapter and strongly bound to its // MessagePipe. When the instance is destroyed, the underlying BluetoothSocket // is destroyed. class Socket : public mojom::Socket { … }; } // namespace bluetooth #endif // DEVICE_BLUETOOTH_SOCKET_H_