SIGN IN SIGN UP
cefsharp / CefSharp UNCLAIMED

.NET (WPF and Windows Forms) bindings for the Chromium Embedded Framework

0 0 1 C#
// 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 BrowserSubprocess
{
private ref class JavascriptCallbackWrapper
{
private:
2015-07-09 10:46:37 +10:00
MCefRefPtr<CefV8Value> _value;
MCefRefPtr<CefV8Context> _context;
internal:
CefRefPtr<CefV8Value> GetValue()
{
return _value.get();
}
CefRefPtr<CefV8Context> GetContext()
{
return _context.get();
}
public:
JavascriptCallbackWrapper(CefRefPtr<CefV8Value> value, CefRefPtr<CefV8Context> context)
: _value(value), _context(context)
{
}
!JavascriptCallbackWrapper()
{
_value = nullptr;
_context = nullptr;
}
~JavascriptCallbackWrapper()
{
this->!JavascriptCallbackWrapper();
}
};
}
}