2018-09-10 02:41:13 +02:00
|
|
|
// 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
|
|
|
|
|
{
|
2021-02-27 12:11:35 +10:00
|
|
|
namespace BrowserSubprocess
|
2015-07-14 10:59:10 +02:00
|
|
|
{
|
|
|
|
|
namespace Async
|
|
|
|
|
{
|
2015-09-24 19:36:47 +10:00
|
|
|
void JavascriptAsyncMethodWrapper::Bind(JavascriptMethod^ method, const CefRefPtr<CefV8Value>& value)
|
2015-07-14 10:59:10 +02:00
|
|
|
{
|
2015-09-24 19:36:47 +10: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);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-02-27 12:11:35 +10:00
|
|
|
}
|