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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/V8ErrorHandler.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/V8ErrorHandler.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/V8ErrorHandler.cpp b/third_party/WebKit/Source/bindings/core/v8/V8ErrorHandler.cpp
index 841bafc2bbf6b8f22030cf4a17682e62d5252588..9f075e0e32c9b4bbf23ffa55ac034d6e1df34140 100644
--- a/third_party/WebKit/Source/bindings/core/v8/V8ErrorHandler.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/V8ErrorHandler.cpp
@@ -103,7 +103,7 @@ void V8ErrorHandler::storeExceptionOnErrorEventWrapper(
v8::Local<v8::Value> data,
v8::Local<v8::Object> creationContext) {
v8::Local<v8::Value> wrappedEvent =
- toV8(event, creationContext, scriptState->isolate());
+ ToV8(event, creationContext, scriptState->isolate());
if (wrappedEvent.IsEmpty())
return;
@@ -119,7 +119,7 @@ v8::Local<v8::Value> V8ErrorHandler::loadExceptionFromErrorEventWrapper(
ErrorEvent* event,
v8::Local<v8::Object> creationContext) {
v8::Local<v8::Value> wrappedEvent =
- toV8(event, creationContext, scriptState->isolate());
+ ToV8(event, creationContext, scriptState->isolate());
if (wrappedEvent.IsEmpty() || !wrappedEvent->IsObject())
return v8::Local<v8::Value>();

Powered by Google App Engine
This is Rietveld 408576698