2019-10-18 19:57:09 +00:00
|
|
|
// 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.
|
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
#ifndef SHELL_RENDERER_API_ELECTRON_API_CONTEXT_BRIDGE_H_
|
|
|
|
#define SHELL_RENDERER_API_ELECTRON_API_CONTEXT_BRIDGE_H_
|
2019-10-18 19:57:09 +00:00
|
|
|
|
2020-03-04 07:18:22 +00:00
|
|
|
#include "shell/renderer/api/context_bridge/object_cache.h"
|
2019-10-31 07:56:00 +00:00
|
|
|
#include "v8/include/v8.h"
|
|
|
|
|
|
|
|
namespace gin_helper {
|
|
|
|
class Arguments;
|
|
|
|
}
|
2019-10-18 19:57:09 +00:00
|
|
|
|
|
|
|
namespace electron {
|
|
|
|
|
|
|
|
namespace api {
|
|
|
|
|
2020-05-15 18:57:40 +00:00
|
|
|
void ProxyFunctionWrapper(const v8::FunctionCallbackInfo<v8::Value>& info);
|
2019-10-18 19:57:09 +00:00
|
|
|
|
|
|
|
v8::MaybeLocal<v8::Object> CreateProxyForAPI(
|
|
|
|
const v8::Local<v8::Object>& api_object,
|
|
|
|
const v8::Local<v8::Context>& source_context,
|
2020-10-27 15:18:36 +00:00
|
|
|
const v8::Local<v8::Context>& destination_context,
|
2020-03-04 07:18:22 +00:00
|
|
|
context_bridge::ObjectCache* object_cache,
|
2020-04-27 19:46:04 +00:00
|
|
|
bool support_dynamic_properties,
|
2019-10-18 19:57:09 +00:00
|
|
|
int recursion_depth);
|
|
|
|
|
|
|
|
} // namespace api
|
|
|
|
|
|
|
|
} // namespace electron
|
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
#endif // SHELL_RENDERER_API_ELECTRON_API_CONTEXT_BRIDGE_H_
|