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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/V8ThrowException.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/V8ThrowException.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/V8ThrowException.cpp b/third_party/WebKit/Source/bindings/core/v8/V8ThrowException.cpp
index 966bfbde5d6d0079aaeb99b08ae9816aff3db842..ff4ee1c6f64856f3042472501f81770325236a24 100644
--- a/third_party/WebKit/Source/bindings/core/v8/V8ThrowException.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/V8ThrowException.cpp
@@ -84,7 +84,7 @@ v8::Local<v8::Value> V8ThrowException::createDOMException(
DOMException* domException =
DOMException::create(exceptionCode, sanitizedMessage, unsanitizedMessage);
v8::Local<v8::Object> exceptionObj =
- toV8(domException, isolate->GetCurrentContext()->Global(), isolate)
+ ToV8(domException, isolate->GetCurrentContext()->Global(), isolate)
.As<v8::Object>();
// Attach an Error object to the DOMException. This is then lazily used to
// get the stack value.

Powered by Google App Engine
This is Rietveld 408576698