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

Unified Diff: device/bluetooth/bluetooth_gatt_service.h

Issue 224893002: device/bluetooth: Rename device::bluetooth_utils::UUID to device::BluetoothUUID (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « device/bluetooth/bluetooth_gatt_descriptor.cc ('k') | device/bluetooth/bluetooth_gatt_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/bluetooth/bluetooth_gatt_service.h
diff --git a/device/bluetooth/bluetooth_gatt_service.h b/device/bluetooth/bluetooth_gatt_service.h
index 963fdd50141daa332e525f8595bf65d70c2dd6ff..4046a00cb5230ce4f027f70a233f115ee8dc2e23 100644
--- a/device/bluetooth/bluetooth_gatt_service.h
+++ b/device/bluetooth/bluetooth_gatt_service.h
@@ -9,7 +9,7 @@
#include "base/basictypes.h"
#include "base/callback.h"
-#include "device/bluetooth/bluetooth_utils.h"
+#include "device/bluetooth/bluetooth_uuid.h"
namespace device {
@@ -133,7 +133,7 @@ class BluetoothGattService {
// Called when the UUID of |service| have changed.
virtual void UuidChanged(
BluetoothGattService* service,
- const bluetooth_utils::UUID& uuid) {}
+ const BluetoothUUID& uuid) {}
// Called when the services included by |service| have changed.
virtual void IncludedServicesChanged(
@@ -157,12 +157,12 @@ class BluetoothGattService {
// peripheral role events. If |delegate| is NULL, then this service will
// employ a default behavior when responding to read and write requests based
// on the cached value of its characteristics and descriptors at a given time.
- static BluetoothGattService* Create(const bluetooth_utils::UUID& uuid,
+ static BluetoothGattService* Create(const BluetoothUUID& uuid,
bool is_primary,
Delegate* delegate);
// The Bluetooth-specific UUID of the service.
- virtual const bluetooth_utils::UUID& GetUuid() const = 0;
+ virtual const BluetoothUUID& GetUuid() const = 0;
// Returns true, if this service hosted locally. If false, then this service
// represents a remote GATT service.
« no previous file with comments | « device/bluetooth/bluetooth_gatt_descriptor.cc ('k') | device/bluetooth/bluetooth_gatt_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698