// 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 EXTENSIONS_BROWSER_API_BLUETOOTH_BLUETOOTH_API_PAIRING_DELEGATE_H_ #define EXTENSIONS_BROWSER_API_BLUETOOTH_BLUETOOTH_API_PAIRING_DELEGATE_H_ #include <stdint.h> #include <string> #include "base/memory/raw_ptr.h" #include "device/bluetooth/bluetooth_device.h" #include "extensions/common/api/bluetooth_private.h" namespace content { class BrowserContext; } namespace extensions { // A pairing delegate to dispatch incoming Bluetooth pairing events to the API // event router. class BluetoothApiPairingDelegate : public device::BluetoothDevice::PairingDelegate { … }; } // namespace extensions #endif // EXTENSIONS_BROWSER_API_BLUETOOTH_BLUETOOTH_API_PAIRING_DELEGATE_H_