// Copyright © 2015 The CefSharp Authors. All rights reserved. // // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. #pragma once #include "include\cef_v8.h" namespace CefSharp { namespace Internals { private ref class JavascriptCallbackWrapper { private: MCefRefPtr _value; MCefRefPtr _context; internal: CefRefPtr GetValue() { return _value.get(); } CefRefPtr GetContext() { return _context.get(); } public: JavascriptCallbackWrapper(CefRefPtr value, CefRefPtr context) : _value(value), _context(context) { } !JavascriptCallbackWrapper() { _value = nullptr; _context = nullptr; } ~JavascriptCallbackWrapper() { this->!JavascriptCallbackWrapper(); } }; } }