 Chromium Code Reviews
 Chromium Code Reviews Issue 1382743002:
  bluetooth: Add characteristicvaluechanged event  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@bluetooth-notifications-1
    
  
    Issue 1382743002:
  bluetooth: Add characteristicvaluechanged event  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@bluetooth-notifications-1| 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 445c074a22a4dfbc95f93e6b73bf53972379fb6f..7cb3d0e5af04eac315218fa0842803ccf44a0eba 100644 | 
| --- a/third_party/WebKit/public/platform/modules/bluetooth/WebBluetooth.h | 
| +++ b/third_party/WebKit/public/platform/modules/bluetooth/WebBluetooth.h | 
| @@ -86,6 +86,10 @@ public: | 
| virtual void stopNotifications(const WebString& characteristicInstanceID, | 
| WebBluetoothGATTCharacteristic*, | 
| WebBluetoothNotificationsCallbacks*) {} | 
| + // Called when addEventListener is called on a characteristic. | 
| 
Jeffrey Yasskin
2015/10/15 23:00:51
Add a blank line since this ends the BluetoothGATT
 
ortuno
2015/10/16 01:24:22
Done.
 | 
| + virtual void registerCharacteristicObject( | 
| + const WebString& characteristicInstanceID, | 
| + WebBluetoothGATTCharacteristic*) {} | 
| virtual void characteristicObjectRemoved( | 
| const WebString& characteristicInstanceID, | 
| WebBluetoothGATTCharacteristic*) {} |