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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/V8BindingTest.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/V8BindingTest.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/V8BindingTest.cpp b/third_party/WebKit/Source/bindings/core/v8/V8BindingTest.cpp
index c48a43c806c9484de4243beb77b321a688895eff..ed488412f8f323e0d05723b0879e5e17fb8df8de 100644
--- a/third_party/WebKit/Source/bindings/core/v8/V8BindingTest.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/V8BindingTest.cpp
@@ -106,8 +106,9 @@ TEST(V8BindingTest, toImplArray) {
EXPECT_EQ(3U, v8HandleVector.size());
EXPECT_EQ("Vini, vidi, vici.",
toUSVString(scope.isolate(), v8HandleVector[0], exceptionState));
- EXPECT_EQ(65535U, toUInt32(scope.isolate(), v8HandleVector[1],
- NormalConversion, exceptionState));
+ EXPECT_EQ(65535U,
+ toUInt32(scope.isolate(), v8HandleVector[1], NormalConversion,
+ exceptionState));
Vector<ScriptValue> scriptValueVector = toImplArray<Vector<ScriptValue>>(
v8Array, 0, scope.isolate(), exceptionState);
@@ -115,8 +116,9 @@ TEST(V8BindingTest, toImplArray) {
String reportOnZela;
EXPECT_TRUE(scriptValueVector[0].toString(reportOnZela));
EXPECT_EQ("Vini, vidi, vici.", reportOnZela);
- EXPECT_EQ(65535U, toUInt32(scope.isolate(), scriptValueVector[1].v8Value(),
- NormalConversion, exceptionState));
+ EXPECT_EQ(65535U,
+ toUInt32(scope.isolate(), scriptValueVector[1].v8Value(),
+ NormalConversion, exceptionState));
}
{
v8::Local<v8::Array> v8StringArray1 = v8::Array::New(scope.isolate(), 2);
« no previous file with comments | « third_party/WebKit/Source/bindings/core/v8/V8Binding.h ('k') | third_party/WebKit/Source/bindings/core/v8/V8GCController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698