// Copyright 2013 The Chromium Authors // 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 <memory> #include "base/check.h" #include "gin/per_context_data.h" namespace gin { ContextHolder::ContextHolder(v8::Isolate* isolate) : … { … } ContextHolder::~ContextHolder() { … } void ContextHolder::SetContext(v8::Local<v8::Context> context) { … } } // namespace gin