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

Unified Diff: third_party/WebKit/Source/core/testing/v8/WebCoreTestSupport.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/testing/v8/WebCoreTestSupport.cpp
diff --git a/third_party/WebKit/Source/core/testing/v8/WebCoreTestSupport.cpp b/third_party/WebKit/Source/core/testing/v8/WebCoreTestSupport.cpp
index 1638d3625ff9a5c64ef009cdddb30bae22a642f5..21b58cfbd8d30466cb51a28c9159402012daf3a8 100644
--- a/third_party/WebKit/Source/core/testing/v8/WebCoreTestSupport.cpp
+++ b/third_party/WebKit/Source/core/testing/v8/WebCoreTestSupport.cpp
@@ -51,11 +51,11 @@ v8::Local<v8::Value> createInternalsObject(v8::Local<v8::Context> context) {
v8::Local<v8::Object> global = scriptState->context()->Global();
ExecutionContext* executionContext = scriptState->getExecutionContext();
if (executionContext->isDocument()) {
- return toV8(Internals::create(executionContext), global,
+ return ToV8(Internals::create(executionContext), global,
scriptState->isolate());
}
if (executionContext->isWorkerGlobalScope())
- return toV8(WorkerInternals::create(), global, scriptState->isolate());
+ return ToV8(WorkerInternals::create(), global, scriptState->isolate());
return v8::Local<v8::Value>();
}
}

Powered by Google App Engine
This is Rietveld 408576698