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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/V8ObjectBuilder.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/V8ObjectBuilder.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/V8ObjectBuilder.cpp b/third_party/WebKit/Source/bindings/core/v8/V8ObjectBuilder.cpp
index b4f32143ad6e103537806800cfbc908b746ebdfc..4c528dfb6e66388ed5e492a029b91795012b45f7 100644
--- a/third_party/WebKit/Source/bindings/core/v8/V8ObjectBuilder.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/V8ObjectBuilder.cpp
@@ -25,8 +25,9 @@ V8ObjectBuilder& V8ObjectBuilder::addNull(const StringView& name) {
V8ObjectBuilder& V8ObjectBuilder::addBoolean(const StringView& name,
bool value) {
- addInternal(name, value ? v8::True(m_scriptState->isolate())
- : v8::False(m_scriptState->isolate()));
+ addInternal(name,
+ value ? v8::True(m_scriptState->isolate())
+ : v8::False(m_scriptState->isolate()));
return *this;
}

Powered by Google App Engine
This is Rietveld 408576698