Index: Source/bindings/v8/V8Binding.cpp |
diff --git a/Source/bindings/v8/V8Binding.cpp b/Source/bindings/v8/V8Binding.cpp |
index 58b2e2394e1c5f8ff32db953c2e2ef42204c882e..1be9f2596dc72aaadbcefc2ad136217f3b84210a 100644 |
--- a/Source/bindings/v8/V8Binding.cpp |
+++ b/Source/bindings/v8/V8Binding.cpp |
@@ -549,7 +549,7 @@ LocalFrame* toFrameIfNotDetached(v8::Handle<v8::Context> context) |
return 0; |
} |
-v8::Local<v8::Context> toV8Context(ExecutionContext* context, DOMWrapperWorld* world) |
+v8::Local<v8::Context> toV8Context(ExecutionContext* context, DOMWrapperWorld& world) |
{ |
ASSERT(context); |
if (context->isDocument()) { |
@@ -562,7 +562,7 @@ v8::Local<v8::Context> toV8Context(ExecutionContext* context, DOMWrapperWorld* w |
return v8::Local<v8::Context>(); |
} |
-v8::Local<v8::Context> toV8Context(v8::Isolate* isolate, LocalFrame* frame, DOMWrapperWorld* world) |
+v8::Local<v8::Context> toV8Context(v8::Isolate* isolate, LocalFrame* frame, DOMWrapperWorld& world) |
{ |
if (!frame) |
return v8::Local<v8::Context>(); |