| Index: third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTCharacteristic.cpp
|
| diff --git a/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTCharacteristic.cpp b/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTCharacteristic.cpp
|
| index b0ec4cd4b83d32eaf271d801427356099afb4460..05fa5a741cb609681b858887eee40a6f5f1ee5b7 100644
|
| --- a/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTCharacteristic.cpp
|
| +++ b/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTCharacteristic.cpp
|
| @@ -206,13 +206,12 @@ ScriptPromise BluetoothRemoteGATTCharacteristic::startNotifications(ScriptState*
|
|
|
| ScriptPromise BluetoothRemoteGATTCharacteristic::stopNotifications(ScriptState* scriptState)
|
| {
|
| -#if OS(MACOSX) || OS(ANDROID)
|
| +#if OS(MACOSX)
|
| // TODO(jlebel): Remove when stopNotifications is implemented.
|
| - // TODO(scheib): Remove when stopNotifications is implemented.
|
| return ScriptPromise::rejectWithDOMException(scriptState,
|
| DOMException::create(NotSupportedError,
|
| "stopNotifications is not implemented yet. See https://goo.gl/J6ASzs"));
|
| -#endif // OS(MACOSX) || OS(ANDROID)
|
| +#endif // OS(MACOSX)
|
|
|
| WebBluetooth* webbluetooth = BluetoothSupplement::fromScriptState(scriptState);
|
| ScriptPromiseResolver* resolver = ScriptPromiseResolver::create(scriptState);
|
|
|