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

Side by Side Diff: chromeos/dbus/bluetooth_le_advertisement_service_provider.h

Issue 1054743003: Add CPP API for BLE advertisments. (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
1 // Copyright 2015 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROMEOS_DBUS_BLUETOOTH_LE_ADVERTISEMENT_SERVICE_PROVIDER_H_ 5 #ifndef CHROMEOS_DBUS_BLUETOOTH_LE_ADVERTISEMENT_SERVICE_PROVIDER_H_
6 #define CHROMEOS_DBUS_BLUETOOTH_LE_ADVERTISEMENT_SERVICE_PROVIDER_H_ 6 #define CHROMEOS_DBUS_BLUETOOTH_LE_ADVERTISEMENT_SERVICE_PROVIDER_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <map> 10 #include <map>
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 // This method will be called when the advertisement is unregistered from 43 // This method will be called when the advertisement is unregistered from
44 // the Bluetooth daemon, generally at shutdown or if the adapter goes away. 44 // the Bluetooth daemon, generally at shutdown or if the adapter goes away.
45 // It may be used to perform cleanup tasks. This corresponds to the 45 // It may be used to perform cleanup tasks. This corresponds to the
46 // org.bluez.LEAdvertisement1.Release method and is renamed to avoid a 46 // org.bluez.LEAdvertisement1.Release method and is renamed to avoid a
47 // conflict with base::Refcounted<T>. 47 // conflict with base::Refcounted<T>.
48 virtual void Released() = 0; 48 virtual void Released() = 0;
49 }; 49 };
50 50
51 virtual ~BluetoothLEAdvertisementServiceProvider(); 51 virtual ~BluetoothLEAdvertisementServiceProvider();
52 52
53 const dbus::ObjectPath& object_path() { return object_path_; }
54
53 // Creates the instance where |bus| is the D-Bus bus connection to export 55 // Creates the instance where |bus| is the D-Bus bus connection to export
54 // the object onto, |object_path| is the object path that it should have 56 // the object onto, |object_path| is the object path that it should have
55 // and |delegate| is the object to which all method calls will be passed 57 // and |delegate| is the object to which all method calls will be passed
56 // and responses generated from. 58 // and responses generated from.
57 static BluetoothLEAdvertisementServiceProvider* Create( 59 static scoped_ptr<BluetoothLEAdvertisementServiceProvider> Create(
58 dbus::Bus* bus, 60 dbus::Bus* bus,
59 const dbus::ObjectPath& object_path, 61 const dbus::ObjectPath& object_path,
60 Delegate* delegate, 62 Delegate* delegate,
61 AdvertisementType type, 63 AdvertisementType type,
62 scoped_ptr<UUIDList> service_uuids, 64 scoped_ptr<UUIDList> service_uuids,
63 scoped_ptr<ManufacturerData> manufacturer_data, 65 scoped_ptr<ManufacturerData> manufacturer_data,
64 scoped_ptr<UUIDList> solicit_uuids, 66 scoped_ptr<UUIDList> solicit_uuids,
65 scoped_ptr<ServiceData> service_data); 67 scoped_ptr<ServiceData> service_data);
66 68
67 protected: 69 protected:
68 BluetoothLEAdvertisementServiceProvider(); 70 BluetoothLEAdvertisementServiceProvider();
69 71
72 // D-Bus object path of object we are exporting, kept so we can unregister
73 // again in our destructor.
74 dbus::ObjectPath object_path_;
75
70 private: 76 private:
71 DISALLOW_COPY_AND_ASSIGN(BluetoothLEAdvertisementServiceProvider); 77 DISALLOW_COPY_AND_ASSIGN(BluetoothLEAdvertisementServiceProvider);
72 }; 78 };
73 79
74 } // namespace chromeos 80 } // namespace chromeos
75 81
76 #endif // CHROMEOS_DBUS_BLUETOOTH_LE_ADVERTISEMENT_SERVICE_PROVIDER_H_ 82 #endif // CHROMEOS_DBUS_BLUETOOTH_LE_ADVERTISEMENT_SERVICE_PROVIDER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698