electron/shell/renderer/api/electron_api_context_bridge.h
2020-02-04 12:19:40 -08:00

38 lines
976 B
C++

// Copyright (c) 2019 Slack Technologies, Inc.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
#ifndef SHELL_RENDERER_API_ELECTRON_API_CONTEXT_BRIDGE_H_
#define SHELL_RENDERER_API_ELECTRON_API_CONTEXT_BRIDGE_H_
#include "v8/include/v8.h"
namespace gin_helper {
class Arguments;
}
namespace electron {
namespace api {
namespace context_bridge {
class RenderFramePersistenceStore;
}
v8::Local<v8::Value> ProxyFunctionWrapper(
context_bridge::RenderFramePersistenceStore* store,
size_t func_id,
gin_helper::Arguments* args);
v8::MaybeLocal<v8::Object> CreateProxyForAPI(
const v8::Local<v8::Object>& api_object,
const v8::Local<v8::Context>& source_context,
const v8::Local<v8::Context>& target_context,
context_bridge::RenderFramePersistenceStore* store,
int recursion_depth);
} // namespace api
} // namespace electron
#endif // SHELL_RENDERER_API_ELECTRON_API_CONTEXT_BRIDGE_H_