| Index: third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTDescriptor.cpp
|
| diff --git a/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTDescriptor.cpp b/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTDescriptor.cpp
|
| index a2b67af446b668eb518fe7d83a4af8ad5d6882ab..17e7f7f851e9631c4391d9889528d72e174f0138 100644
|
| --- a/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTDescriptor.cpp
|
| +++ b/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTDescriptor.cpp
|
| @@ -131,8 +131,9 @@ ScriptPromise BluetoothRemoteGATTDescriptor::writeValue(
|
| // InvalidModificationError and abort.
|
| if (value.byteLength() > 512) {
|
| return ScriptPromise::rejectWithDOMException(
|
| - scriptState, DOMException::create(InvalidModificationError,
|
| - "Value can't exceed 512 bytes."));
|
| + scriptState,
|
| + DOMException::create(InvalidModificationError,
|
| + "Value can't exceed 512 bytes."));
|
| }
|
|
|
| // Let valueVector be a copy of the bytes held by value.
|
|
|