Index: Source/bindings/v8/V8Binding.cpp |
diff --git a/Source/bindings/v8/V8Binding.cpp b/Source/bindings/v8/V8Binding.cpp |
index d56bffe2c53613af7a8895471534f9cb610baecd..9ae23007b1952d96529e8bc16a7545a79d74e499 100644 |
--- a/Source/bindings/v8/V8Binding.cpp |
+++ b/Source/bindings/v8/V8Binding.cpp |
@@ -591,7 +591,7 @@ v8::Local<v8::Value> getHiddenValueFromMainWorldWrapper(v8::Isolate* isolate, Sc |
return wrapper.IsEmpty() ? v8::Local<v8::Value>() : wrapper->GetHiddenValue(key); |
} |
-v8::Isolate* isolateForScriptExecutionContext(ScriptExecutionContext* context) |
+v8::Isolate* toIsolate(ScriptExecutionContext* context) |
{ |
if (context && context->isDocument()) { |
static v8::Isolate* mainWorldIsolate = 0; |
@@ -602,7 +602,7 @@ v8::Isolate* isolateForScriptExecutionContext(ScriptExecutionContext* context) |
return v8::Isolate::GetCurrent(); |
} |
-v8::Isolate* isolateForFrame(Frame* frame) |
+v8::Isolate* toIsolate(Frame* frame) |
{ |
return frame->script()->isolate(); |
} |