OLD | NEW |
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 DEVICE_BLUETOOTH_BLUETOOTH_ADVERTISEMENT_BLUEZ_H_ | 5 #ifndef DEVICE_BLUETOOTH_BLUEZ_BLUETOOTH_ADVERTISEMENT_BLUEZ_H_ |
6 #define DEVICE_BLUETOOTH_BLUETOOTH_ADVERTISEMENT_BLUEZ_H_ | 6 #define DEVICE_BLUETOOTH_BLUEZ_BLUETOOTH_ADVERTISEMENT_BLUEZ_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
11 #include "device/bluetooth/bluetooth_adapter.h" | 11 #include "device/bluetooth/bluetooth_adapter.h" |
12 #include "device/bluetooth/bluetooth_advertisement.h" | 12 #include "device/bluetooth/bluetooth_advertisement.h" |
13 #include "device/bluetooth/bluetooth_export.h" | 13 #include "device/bluetooth/bluetooth_export.h" |
14 #include "device/bluetooth/dbus/bluetooth_le_advertisement_service_provider.h" | 14 #include "device/bluetooth/dbus/bluetooth_le_advertisement_service_provider.h" |
15 | 15 |
16 namespace bluez { | 16 namespace bluez { |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 | 54 |
55 // Adapter this advertisement is advertising on. | 55 // Adapter this advertisement is advertising on. |
56 scoped_refptr<BluetoothAdapterBlueZ> adapter_; | 56 scoped_refptr<BluetoothAdapterBlueZ> adapter_; |
57 std::unique_ptr<bluez::BluetoothLEAdvertisementServiceProvider> provider_; | 57 std::unique_ptr<bluez::BluetoothLEAdvertisementServiceProvider> provider_; |
58 | 58 |
59 DISALLOW_COPY_AND_ASSIGN(BluetoothAdvertisementBlueZ); | 59 DISALLOW_COPY_AND_ASSIGN(BluetoothAdvertisementBlueZ); |
60 }; | 60 }; |
61 | 61 |
62 } // namespace bluez | 62 } // namespace bluez |
63 | 63 |
64 #endif // DEVICE_BLUETOOTH_BLUETOOTH_ADVERTISEMENT_BLUEZ_H_ | 64 #endif // DEVICE_BLUETOOTH_BLUEZ_BLUETOOTH_ADVERTISEMENT_BLUEZ_H_ |
OLD | NEW |