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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/ScriptPromise.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/bindings/core/v8/ScriptPromise.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/ScriptPromise.cpp b/third_party/WebKit/Source/bindings/core/v8/ScriptPromise.cpp
index f469d369261cfd3b9d6668cb311c28820c3bc9b7..39e5a2ffc5b87ed4fe2b415635207c488d2c0822 100644
--- a/third_party/WebKit/Source/bindings/core/v8/ScriptPromise.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/ScriptPromise.cpp
@@ -299,7 +299,7 @@ ScriptPromise ScriptPromise::reject(ScriptState* scriptState,
ScriptPromise ScriptPromise::rejectWithDOMException(ScriptState* scriptState,
DOMException* exception) {
ASSERT(scriptState->isolate()->InContext());
- return reject(scriptState, toV8(exception, scriptState->context()->Global(),
+ return reject(scriptState, ToV8(exception, scriptState->context()->Global(),
scriptState->isolate()));
}

Powered by Google App Engine
This is Rietveld 408576698