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

Unified Diff: third_party/WebKit/Source/core/streams/ReadableStreamOperations.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/core/streams/ReadableStreamOperations.cpp
diff --git a/third_party/WebKit/Source/core/streams/ReadableStreamOperations.cpp b/third_party/WebKit/Source/core/streams/ReadableStreamOperations.cpp
index a78e2f479fd7b91f47cc9005304cfe570826a1b9..351202abbf0bbc0eb85ae5d5c4083a093939f84d 100644
--- a/third_party/WebKit/Source/core/streams/ReadableStreamOperations.cpp
+++ b/third_party/WebKit/Source/core/streams/ReadableStreamOperations.cpp
@@ -35,8 +35,9 @@ ScriptValue ReadableStreamOperations::createCountQueuingStrategy(
v8::Local<v8::Value> args[] = {
v8::Number::New(scriptState->isolate(), highWaterMark)};
return ScriptValue(
- scriptState, V8ScriptRunner::callExtraOrCrash(
- scriptState, "createBuiltInCountQueuingStrategy", args));
+ scriptState,
+ V8ScriptRunner::callExtraOrCrash(
+ scriptState, "createBuiltInCountQueuingStrategy", args));
}
ScriptValue ReadableStreamOperations::getReader(ScriptState* scriptState,
@@ -145,8 +146,9 @@ ScriptPromise ReadableStreamOperations::defaultReaderRead(
v8::Local<v8::Value> args[] = {reader.v8Value()};
return ScriptPromise::cast(
- scriptState, V8ScriptRunner::callExtraOrCrash(
- scriptState, "ReadableStreamDefaultReaderRead", args));
+ scriptState,
+ V8ScriptRunner::callExtraOrCrash(
+ scriptState, "ReadableStreamDefaultReaderRead", args));
}
void ReadableStreamOperations::tee(ScriptState* scriptState,
@@ -158,8 +160,9 @@ void ReadableStreamOperations::tee(ScriptState* scriptState,
v8::Local<v8::Value> args[] = {stream.v8Value()};
- ScriptValue result(scriptState, V8ScriptRunner::callExtraOrCrash(
- scriptState, "ReadableStreamTee", args));
+ ScriptValue result(
+ scriptState,
+ V8ScriptRunner::callExtraOrCrash(scriptState, "ReadableStreamTee", args));
DCHECK(result.v8Value()->IsArray());
v8::Local<v8::Array> branches = result.v8Value().As<v8::Array>();
DCHECK_EQ(2u, branches->Length());
« no previous file with comments | « third_party/WebKit/Source/core/paint/ThemePainterMac.mm ('k') | third_party/WebKit/Source/core/style/BasicShapes.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698