// Copyright © 2014 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" #include "JavascriptCallbackRegistry.h" using namespace CefSharp::Internals::Wcf; namespace CefSharp { namespace BrowserSubprocess { private class JavascriptMethodHandler : public CefV8Handler { private: gcroot^, BrowserProcessResponse^>^> _method; gcroot _callbackRegistry; public: JavascriptMethodHandler(Func^, BrowserProcessResponse^>^ method, JavascriptCallbackRegistry^ callbackRegistry) { _method = method; _callbackRegistry = callbackRegistry; } ~JavascriptMethodHandler() { delete _method; // The callback registry is a shared instance among all method handlers (async & sync). // It's lifecycle is managed in the JavascriptRootObjectWrapper. _callbackRegistry = nullptr; } virtual bool Execute(const CefString& name, CefRefPtr object, const CefV8ValueList& arguments, CefRefPtr& retval, CefString& exception) override; CefRefPtr ConvertToCefObject(Object^ obj); IMPLEMENT_REFCOUNTINGM(JavascriptMethodHandler); }; } }