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

Unified Diff: device/bluetooth/bluetooth_uuid.h

Issue 285633003: Bluetooth UUIDs should be case-insensitive. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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 | « no previous file | device/bluetooth/bluetooth_uuid.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/bluetooth/bluetooth_uuid.h
diff --git a/device/bluetooth/bluetooth_uuid.h b/device/bluetooth/bluetooth_uuid.h
index 1b547d1837be94c44b6ffca3c5cde20f6fe21c20..5c2fc8a3b9c0f05053baab9d0a773f0954c65ea7 100644
--- a/device/bluetooth/bluetooth_uuid.h
+++ b/device/bluetooth/bluetooth_uuid.h
@@ -27,11 +27,11 @@ class BluetoothUUID {
// Single argument constructor. |uuid| can be a 16, 32, or 128 bit UUID
// represented as a 4, 8, or 36 character string with the following
// formats:
- // XXXX
- // 0xXXXX
- // XXXXXXXX
- // 0xXXXXXXXX
- // XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
+ // xxxx
+ // 0xxxxx
+ // xxxxxxxx
+ // 0xxxxxxxxx
+ // xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
//
// 16 and 32 bit UUIDs will be internally converted to a 128 bit UUID using
// the base UUID defined in the Bluetooth specification, hence custom UUIDs
@@ -57,15 +57,15 @@ class BluetoothUUID {
// Returns the value of the UUID as a string. The representation format is
// based on what was passed in during construction. For the supported sizes,
// this representation can have the following formats:
- // - 16 bit: XXXX
- // - 32 bit: XXXXXXXX
- // - 128 bit: XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
- // where X is a lowercase hex digit.
+ // - 16 bit: xxxx
+ // - 32 bit: xxxxxxxx
+ // - 128 bit: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
+ // where x is a lowercase hex digit.
const std::string& value() const { return value_; }
// Returns the underlying 128-bit value as a string in the following format:
- // XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
- // where X is a lowercase hex digit.
+ // xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
+ // where x is a lowercase hex digit.
const std::string& canonical_value() const { return canonical_value_; }
// Permit sufficient comparison to allow a UUID to be used as a key in a
@@ -79,9 +79,9 @@ class BluetoothUUID {
private:
// String representation of the UUID that was used during construction. For
// the supported sizes, this representation can have the following formats:
- // - 16 bit: XXXX
- // - 32 bit: XXXXXXXX
- // - 128 bit: XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
+ // - 16 bit: xxxx
+ // - 32 bit: xxxxxxxx
+ // - 128 bit: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
Format format_;
std::string value_;
« no previous file with comments | « no previous file | device/bluetooth/bluetooth_uuid.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698