// 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. #include "device/bluetooth/discovery_session.h" #include "base/functional/bind.h" #include "base/functional/callback_helpers.h" namespace bluetooth { DiscoverySession::DiscoverySession( std::unique_ptr<device::BluetoothDiscoverySession> session) : … { … } DiscoverySession::~DiscoverySession() = default; void DiscoverySession::IsActive(IsActiveCallback callback) { … } void DiscoverySession::Stop(StopCallback callback) { … } } // namespace bluetooth