 Chromium Code Reviews
 Chromium Code Reviews Issue 2637343002:
  Implement WebBluetooth descriptor.readValue()  (Closed)
    
  
    Issue 2637343002:
  Implement WebBluetooth descriptor.readValue()  (Closed) 
  | Index: third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTUtils.h | 
| diff --git a/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTUtils.h b/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTUtils.h | 
| index bc8fa2275141d706aff8e38a7a2264aebd055e21..de176f3baefd53a41ce087a7e7caaed76cedbd26 100644 | 
| --- a/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTUtils.h | 
| +++ b/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTUtils.h | 
| @@ -18,7 +18,8 @@ class BluetoothRemoteGATTUtils final { | 
| enum ExceptionType { | 
| 
ortuno
2017/01/20 04:30:53
Out of curiosity, why is this not an enum class?
 
dougt
2017/01/23 21:40:37
No reason, really. Follow up?
 
ortuno
2017/01/23 22:20:42
SGTM
 | 
| kGATTServerDisconnected, | 
| kGATTServerNotConnected, | 
| - kInvalidCharacteristic | 
| + kInvalidCharacteristic, | 
| + kInvalidDescriptor | 
| }; | 
| static DOMException* CreateDOMException(ExceptionType); |