Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(112)

Unified Diff: third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTDescriptor.cpp

Issue 2701993002: DO NOT COMMIT: Results of running new (proposed) clang-format on Blink (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.

Powered by Google App Engine
This is Rietveld 408576698