diff options
Diffstat (limited to 'webkit/glue/devtools/bound_object.cc')
-rw-r--r-- | webkit/glue/devtools/bound_object.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/glue/devtools/bound_object.cc b/webkit/glue/devtools/bound_object.cc index 3301bc2..4ffb2ca 100644 --- a/webkit/glue/devtools/bound_object.cc +++ b/webkit/glue/devtools/bound_object.cc @@ -13,8 +13,8 @@ BoundObject::BoundObject( v8::Handle<v8::Context> context, void* v8_this, const char* object_name) - : context_(context), - object_name_(object_name) { + : object_name_(object_name), + context_(context) { v8::HandleScope scope; v8::Context::Scope context_scope(context); v8_this_ = v8::Persistent<v8::External>::New(v8::External::New(v8_this)); |