Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(400)

Side by Side Diff: chromeos/dbus/fake_bluetooth_le_advertisement_service_provider.cc

Issue 1052363005: Add DBus bindings for BLE Advertisement. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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.
4
5 #include "chromeos/dbus/dbus_thread_manager.h"
6 #include "fake_bluetooth_le_advertisement_service_provider.h"
7 #include "fake_bluetooth_le_advertising_manager_client.h"
8
9 namespace chromeos {
10
11 FakeBluetoothLEAdvertisementServiceProvider::
12 FakeBluetoothLEAdvertisementServiceProvider(
13 const dbus::ObjectPath& object_path,
14 Delegate* delegate)
15 : object_path_(object_path), delegate_(delegate) {
16 VLOG(1) << "Creating Bluetooth Advertisement: " << object_path_.value();
17
18 FakeBluetoothLEAdvertisingManagerClient*
19 fake_bluetooth_profile_manager_client =
20 static_cast<FakeBluetoothLEAdvertisingManagerClient*>(
21 DBusThreadManager::Get()
22 ->GetBluetoothLEAdvertisingManagerClient());
23 fake_bluetooth_profile_manager_client->RegisterAdvertisementServiceProvider(
24 this);
25 }
26
27 FakeBluetoothLEAdvertisementServiceProvider::
28 ~FakeBluetoothLEAdvertisementServiceProvider() {
29 VLOG(1) << "Cleaning up Bluetooth Advertisement: " << object_path_.value();
30
31 FakeBluetoothLEAdvertisingManagerClient*
32 fake_bluetooth_profile_manager_client =
33 static_cast<FakeBluetoothLEAdvertisingManagerClient*>(
34 DBusThreadManager::Get()
35 ->GetBluetoothLEAdvertisingManagerClient());
36 fake_bluetooth_profile_manager_client->UnregisterAdvertisementServiceProvider(
37 this);
38 }
39
40 void FakeBluetoothLEAdvertisementServiceProvider::Release() {
41 VLOG(1) << object_path_.value() << ": Release";
42 delegate_->Released();
43 }
44
45 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698