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

Unified Diff: third_party/WebKit/public/platform/modules/bluetooth/WebBluetooth.h

Issue 2385233002: reflow comments in public/platform/{bluetooth,indexeddb} (Closed)
Patch Set: Created 4 years, 2 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 | third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothRemoteGATTCharacteristicInit.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/public/platform/modules/bluetooth/WebBluetooth.h
diff --git a/third_party/WebKit/public/platform/modules/bluetooth/WebBluetooth.h b/third_party/WebKit/public/platform/modules/bluetooth/WebBluetooth.h
index 0af6aa00e84e286be9370b2772244060977d5d5e..3bdbee488eac95fa6d44650270de6f76f9f3639f 100644
--- a/third_party/WebKit/public/platform/modules/bluetooth/WebBluetooth.h
+++ b/third_party/WebKit/public/platform/modules/bluetooth/WebBluetooth.h
@@ -70,31 +70,32 @@ class WebBluetooth {
// BluetoothDevice methods:
// BluetoothRemoteGATTServer methods:
- // See https://webbluetoothchrome.github.io/web-bluetooth/#idl-def-bluetoothgattremoteserver
+ // See
+ // https://webbluetoothchrome.github.io/web-bluetooth/#idl-def-bluetoothgattremoteserver
virtual void connect(const WebString& deviceId,
WebBluetoothDevice* device,
WebBluetoothRemoteGATTServerConnectCallbacks*) {}
virtual void disconnect(const WebString& deviceId) = 0;
virtual void getPrimaryServices(
const WebString& deviceId,
- int32_t
- quantity /* Corresponds to WebBluetoothGATTQueryQuantity in web_bluetooth.mojom */
- ,
+ // Corresponds to WebBluetoothGATTQueryQuantity in web_bluetooth.mojom:
+ int32_t quantity,
const WebString& servicesUUID,
WebBluetoothGetPrimaryServicesCallbacks*) = 0;
// BluetoothRemoteGATTService methods:
- // See https://webbluetoothchrome.github.io/web-bluetooth/#idl-def-bluetoothgattservice
+ // See
+ // https://webbluetoothchrome.github.io/web-bluetooth/#idl-def-bluetoothgattservice
virtual void getCharacteristics(
const WebString& serviceInstanceID,
- int32_t
- quantity /* Corresponds to WebBluetoothGATTQueryQuantity in web_bluetooth.mojom */
- ,
+ // Corresponds to WebBluetoothGATTQueryQuantity in web_bluetooth.mojom
+ int32_t quantity,
const WebString& characteristicsUUID,
WebBluetoothGetCharacteristicsCallbacks*) = 0;
// BluetoothRemoteGATTCharacteristic methods:
- // See https://webbluetoothchrome.github.io/web-bluetooth/#bluetoothgattcharacteristic
+ // See
+ // https://webbluetoothchrome.github.io/web-bluetooth/#bluetoothgattcharacteristic
virtual void readValue(const WebString& characteristicInstanceID,
WebBluetoothReadValueCallbacks*) {}
virtual void writeValue(const WebString& characteristicInstanceID,
« no previous file with comments | « no previous file | third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothRemoteGATTCharacteristicInit.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698