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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/ScriptPromise.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/bindings/core/v8/ScriptPromise.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/ScriptPromise.cpp b/third_party/WebKit/Source/bindings/core/v8/ScriptPromise.cpp
index 29c66d2ca378cb2743e69772d4374d8623fdf745..3cdab35845eacdb57b71ccf9ff0a41cc87322492 100644
--- a/third_party/WebKit/Source/bindings/core/v8/ScriptPromise.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/ScriptPromise.cpp
@@ -299,8 +299,9 @@ ScriptPromise ScriptPromise::reject(ScriptState* scriptState,
ScriptPromise ScriptPromise::rejectWithDOMException(ScriptState* scriptState,
DOMException* exception) {
ASSERT(scriptState->isolate()->InContext());
- return reject(scriptState, ToV8(exception, scriptState->context()->Global(),
- scriptState->isolate()));
+ return reject(scriptState,
+ ToV8(exception, scriptState->context()->Global(),
+ scriptState->isolate()));
}
v8::Local<v8::Promise> ScriptPromise::rejectRaw(ScriptState* scriptState,

Powered by Google App Engine
This is Rietveld 408576698