// Copyright 2013 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "gin/public/context_holder.h" #include "base/logging.h" #include "gin/per_context_data.h" namespace gin { ContextHolder::ContextHolder(v8::Isolate* isolate) : isolate_(isolate) { } ContextHolder::~ContextHolder() { v8::HandleScope handle_scope(isolate()); v8::Handle context = this->context(); data_->Detach(context); data_.reset(); // TODO(abarth): Figure out how to set kResetInDestructor to true. context_.Reset(); } void ContextHolder::SetContext(v8::Handle context) { DCHECK(context_.IsEmpty()); context_.Reset(isolate_, context); data_.reset(new PerContextData(context)); } } // namespace gin