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

Unified Diff: third_party/WebKit/Source/core/streams/ReadableStreamController.h

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/ReadableStreamController.h
diff --git a/third_party/WebKit/Source/core/streams/ReadableStreamController.h b/third_party/WebKit/Source/core/streams/ReadableStreamController.h
index fc22324ff6f5eb579cc96f597ef79ed703b87de4..b2a9ef2be8ca37d0d5c670388ea6145596489f89 100644
--- a/third_party/WebKit/Source/core/streams/ReadableStreamController.h
+++ b/third_party/WebKit/Source/core/streams/ReadableStreamController.h
@@ -84,7 +84,7 @@ class CORE_EXPORT ReadableStreamController final
if (controller.IsEmpty())
return;
- v8::Local<v8::Value> jsChunk = toV8(chunk, scriptState);
+ v8::Local<v8::Value> jsChunk = ToV8(chunk, scriptState);
v8::Local<v8::Value> args[] = {controller, jsChunk};
v8::MaybeLocal<v8::Value> result = V8ScriptRunner::callExtra(
scriptState, "ReadableStreamDefaultControllerEnqueue", args);
@@ -103,7 +103,7 @@ class CORE_EXPORT ReadableStreamController final
if (controller.IsEmpty())
return;
- v8::Local<v8::Value> jsError = toV8(error, scriptState);
+ v8::Local<v8::Value> jsError = ToV8(error, scriptState);
v8::Local<v8::Value> args[] = {controller, jsError};
v8::MaybeLocal<v8::Value> result = V8ScriptRunner::callExtra(
scriptState, "ReadableStreamDefaultControllerError", args);

Powered by Google App Engine
This is Rietveld 408576698