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

Unified Diff: third_party/WebKit/Source/core/streams/ReadableStreamOperations.cpp

Issue 2595543003: Rename toV8(...) function in Blink to ToV8(...). (Closed)
Patch Set: Rebasing... Created 3 years, 11 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 7ee1ec89c5c0842fdd2fe05fc3d37bb4fa238bec..a78e2f479fd7b91f47cc9005304cfe570826a1b9 100644
--- a/third_party/WebKit/Source/core/streams/ReadableStreamOperations.cpp
+++ b/third_party/WebKit/Source/core/streams/ReadableStreamOperations.cpp
@@ -18,7 +18,7 @@ ScriptValue ReadableStreamOperations::createReadableStream(
ScriptValue strategy) {
ScriptState::Scope scope(scriptState);
- v8::Local<v8::Value> jsUnderlyingSource = toV8(underlyingSource, scriptState);
+ v8::Local<v8::Value> jsUnderlyingSource = ToV8(underlyingSource, scriptState);
v8::Local<v8::Value> jsStrategy = strategy.v8Value();
v8::Local<v8::Value> args[] = {jsUnderlyingSource, jsStrategy};
return ScriptValue(

Powered by Google App Engine
This is Rietveld 408576698