| Index: trunk/Source/bindings/v8/V8Binding.cpp
|
| ===================================================================
|
| --- trunk/Source/bindings/v8/V8Binding.cpp (revision 170423)
|
| +++ trunk/Source/bindings/v8/V8Binding.cpp (working copy)
|
| @@ -549,7 +549,7 @@
|
| 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 @@
|
| 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>();
|
|
|