chromium/device/bluetooth/server_socket.h

// 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_SERVER_SOCKET_H_
#define DEVICE_BLUETOOTH_SERVER_SOCKET_H_

#include "base/memory/scoped_refptr.h"
#include "base/memory/weak_ptr.h"
#include "device/bluetooth/public/mojom/adapter.mojom.h"

namespace device {
class BluetoothDevice;
class BluetoothSocket;
}  // namespace device

namespace bluetooth {

// Implementation of Mojo ServerSocket in
// device/bluetooth/public/mojom/adapter.mojom.
// It handles requests to accept incoming connections from remote devices,
// returning a Socket.
// Uses the platform abstraction of //device/bluetooth.
// An instance of this class is constructed by Adapter. When the instance is
// destroyed, the underlying BluetoothSocket is destroyed.
class ServerSocket : public mojom::ServerSocket {};

}  // namespace bluetooth

#endif  // DEVICE_BLUETOOTH_SERVER_SOCKET_H_