| Index: gin/dictionary.cc
|
| diff --git a/gin/dictionary.cc b/gin/dictionary.cc
|
| index ca6227efc236c030ff4210f5f5cd4dab901ba9cb..e8b2ac3a4274d6ebc039cfd12dd5fa00ea05e490 100644
|
| --- a/gin/dictionary.cc
|
| +++ b/gin/dictionary.cc
|
| @@ -30,11 +30,12 @@ v8::Handle<v8::Value> Converter<Dictionary>::ToV8(v8::Isolate* isolate,
|
| return val.object_;
|
| }
|
|
|
| -bool Converter<Dictionary>::FromV8(v8::Handle<v8::Value> val,
|
| +bool Converter<Dictionary>::FromV8(v8::Isolate* isolate,
|
| + v8::Handle<v8::Value> val,
|
| Dictionary* out) {
|
| if (!val->IsObject())
|
| return false;
|
| - *out = Dictionary(out->isolate(), v8::Handle<v8::Object>::Cast(val));
|
| + *out = Dictionary(isolate, v8::Handle<v8::Object>::Cast(val));
|
| return true;
|
| }
|
|
|
|
|