// Copyright 2017 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_EMULATION_FAKE_BLUETOOTH_H_ #define DEVICE_BLUETOOTH_EMULATION_FAKE_BLUETOOTH_H_ #include <memory> #include "base/compiler_specific.h" #include "device/bluetooth/bluetooth_adapter_factory.h" #include "device/bluetooth/emulation/fake_central.h" #include "device/bluetooth/public/mojom/emulation/fake_bluetooth.mojom-forward.h" #include "mojo/public/cpp/bindings/pending_receiver.h" namespace bluetooth { // Implementation of FakeBluetooth in // src/device/bluetooth/public/mojom/emulation/fake_bluetooth.mojom. // Implemented on top of the C++ device/bluetooth API, mainly // device/bluetooth/bluetooth_adapter_factory.h. // // Not intended for direct use by clients. See README.md. class FakeBluetooth : public mojom::FakeBluetooth { … }; } // namespace bluetooth #endif // DEVICE_BLUETOOTH_EMULATION_FAKE_BLUETOOTH_H_