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

Side by Side Diff: device/bluetooth/bluez/bluetooth_advertisement_bluez.h

Issue 1898643002: Refactor device::BluetoothGattXXX classes to split into remote/local. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698