| 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>();
|
| }
|
| }
|
|
|