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 c462463ac6a8bed03d4d50ec643c311a70d3615c..8d5d9affde5b932cca62f27d3a4e2626ca56dace 100644 |
--- a/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTCharacteristic.cpp |
+++ b/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTCharacteristic.cpp |
@@ -201,8 +201,9 @@ ScriptPromise BluetoothRemoteGATTCharacteristic::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. |
Vector<uint8_t> valueVector; |