1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chromeos/dbus/dbus_thread_manager.h"
6 #include "chromeos/dbus/fake_bluetooth_le_advertisement_service_provider.h"
7 #include "chromeos/dbus/fake_bluetooth_le_advertising_manager_client.h"
11 FakeBluetoothLEAdvertisementServiceProvider::
12 FakeBluetoothLEAdvertisementServiceProvider(
13 const dbus::ObjectPath
& object_path
,
15 : delegate_(delegate
) {
16 object_path_
= object_path
;
17 VLOG(1) << "Creating Bluetooth Advertisement: " << object_path_
.value();
19 FakeBluetoothLEAdvertisingManagerClient
*
20 fake_bluetooth_profile_manager_client
=
21 static_cast<FakeBluetoothLEAdvertisingManagerClient
*>(
22 DBusThreadManager::Get()
23 ->GetBluetoothLEAdvertisingManagerClient());
24 fake_bluetooth_profile_manager_client
->RegisterAdvertisementServiceProvider(
28 FakeBluetoothLEAdvertisementServiceProvider::
29 ~FakeBluetoothLEAdvertisementServiceProvider() {
30 VLOG(1) << "Cleaning up Bluetooth Advertisement: " << object_path_
.value();
32 FakeBluetoothLEAdvertisingManagerClient
*
33 fake_bluetooth_profile_manager_client
=
34 static_cast<FakeBluetoothLEAdvertisingManagerClient
*>(
35 DBusThreadManager::Get()
36 ->GetBluetoothLEAdvertisingManagerClient());
37 fake_bluetooth_profile_manager_client
->UnregisterAdvertisementServiceProvider(
41 void FakeBluetoothLEAdvertisementServiceProvider::Release() {
42 VLOG(1) << object_path_
.value() << ": Release";
43 delegate_
->Released();
46 } // namespace chromeos