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

Unified Diff: device/bluetooth/bluetooth_device.h

Issue 21089002: Fix bluetooth GetServiceRecord with uuid. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 5 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_device_win.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/bluetooth/bluetooth_device.h
diff --git a/device/bluetooth/bluetooth_device.h b/device/bluetooth/bluetooth_device.h
index 831e5e577ba1fc6f0fb68655954f13018e08dbde..aaf4e93c7f28ff259a57f754b52b6949deddff90 100644
--- a/device/bluetooth/bluetooth_device.h
+++ b/device/bluetooth/bluetooth_device.h
@@ -108,7 +108,7 @@ class BluetoothDevice {
//
// This is used for Bluetooth 2.0 and earlier keyboard devices, the
// |pincode| will always be a six-digit numeric in the range 000000-999999
- // for compatibilty with later specifications.
+ // for compatibility with later specifications.
virtual void DisplayPinCode(BluetoothDevice* device,
const std::string& pincode) = 0;
@@ -186,7 +186,7 @@ class BluetoothDevice {
virtual uint16 GetDeviceID() const = 0;
// Returns the name of the device suitable for displaying, this may
- // be a synthesied string containing the address and localized type name
+ // be a synthesized string containing the address and localized type name
// if the device has no obtained name.
virtual string16 GetName() const;
@@ -323,10 +323,10 @@ class BluetoothDevice {
// Disconnects the device, terminating the low-level ACL connection
// and any application connections using it, and then discards link keys
- // and other pairing information. The device object remainds valid until
- // returing from the calling function, after which it should be assumed to
+ // and other pairing information. The device object remains valid until
+ // returning from the calling function, after which it should be assumed to
// have been deleted. If the request fails, |error_callback| will be called.
- // There is no callback for success beause this object is often deleted
+ // There is no callback for success because this object is often deleted
// before that callback would be called.
virtual void Forget(const ErrorCallback& error_callback) = 0;
« no previous file with comments | « no previous file | device/bluetooth/bluetooth_device_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698