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

Unified Diff: third_party/WebKit/Source/modules/bluetooth/BluetoothDevice.idl

Issue 2380383003: Use sequence<T> instead of T[] where possible and document exceptions (Closed)
Patch Set: more 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
Index: third_party/WebKit/Source/modules/bluetooth/BluetoothDevice.idl
diff --git a/third_party/WebKit/Source/modules/bluetooth/BluetoothDevice.idl b/third_party/WebKit/Source/modules/bluetooth/BluetoothDevice.idl
index 5a50ec6de932cb97af1a7dfb650e58ff016042af..b8c9db7fcdd4c7c3b41fe9405e6f07e5c523bafe 100644
--- a/third_party/WebKit/Source/modules/bluetooth/BluetoothDevice.idl
+++ b/third_party/WebKit/Source/modules/bluetooth/BluetoothDevice.idl
@@ -17,6 +17,7 @@
readonly attribute DOMString id;
readonly attribute DOMString? name;
readonly attribute BluetoothRemoteGATTServer gatt;
+ // TODO(jyasskin): |uuids| should be FrozenArray<UUID>.
Jeffrey Yasskin 2016/10/03 16:58:37 LGTM. You could also put "deprecate uuids" due to
foolip 2016/10/04 10:02:20 Went with "|uuids| was FrozenArray<UUID>, now remo
readonly attribute UUID[] uuids;
attribute EventHandler ongattserverdisconnected;

Powered by Google App Engine
This is Rietveld 408576698