SIGN IN SIGN UP
cefsharp / CefSharp UNCLAIMED

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

0 0 0 C#
// Copyright © 2015 The CefSharp Authors. All rights reserved.
2015-07-14 10:59:10 +02:00
//
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
#include "stdafx.h"
#include "JavascriptCallbackRegistry.h"
#include "JavascriptAsyncMethodWrapper.h"
namespace CefSharp
{
namespace BrowserSubprocess
2015-07-14 10:59:10 +02:00
{
namespace Async
{
void JavascriptAsyncMethodWrapper::Bind(JavascriptMethod^ method, const CefRefPtr<CefV8Value>& value)
2015-07-14 10:59:10 +02:00
{
auto methodName = StringUtils::ToNative(method->JavascriptName);
2015-07-14 10:59:10 +02:00
auto v8Function = CefV8Value::CreateFunction(methodName, _javascriptMethodHandler.get());
value->SetValue(methodName, v8Function, V8_PROPERTY_ATTRIBUTE_NONE);
}
}
}
}