// Copyright 2015 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_TEST_TEST_BLUETOOTH_ADAPTER_OBSERVER_H_ #define DEVICE_BLUETOOTH_TEST_TEST_BLUETOOTH_ADAPTER_OBSERVER_H_ #include <stdint.h> #include <string> #include <vector> #include "base/functional/callback.h" #include "base/memory/raw_ptr.h" #include "build/build_config.h" #include "device/bluetooth/bluetooth_adapter.h" namespace device { // Test implementation of BluetoothAdapter::Observer counting method calls and // caching last reported values. class TestBluetoothAdapterObserver : public BluetoothAdapter::Observer { … }; } // namespace device #endif // DEVICE_BLUETOOTH_TEST_TEST_BLUETOOTH_ADAPTER_OBSERVER_H_