Home | History | Annotate | Download | only in bluetooth

Lines Matching refs:BluetoothAdvertisement

24 // BluetoothAdvertisement represents an advertisement which advertises over the
26 class DEVICE_BLUETOOTH_EXPORT BluetoothAdvertisement
27 : public base::RefCounted<BluetoothAdvertisement> {
119 BluetoothAdvertisement* advertisement) = 0;
123 void AddObserver(BluetoothAdvertisement::Observer* observer);
124 void RemoveObserver(BluetoothAdvertisement::Observer* observer);
135 friend class base::RefCounted<BluetoothAdvertisement>;
137 BluetoothAdvertisement();
140 virtual ~BluetoothAdvertisement();
143 // |observers_| are expected to outlive a BluetoothAdvertisement object.
144 base::ObserverList<BluetoothAdvertisement::Observer> observers_;
147 DISALLOW_COPY_AND_ASSIGN(BluetoothAdvertisement);