3ae3233e65
* refactor: move mate::Event to gin * refactor: move mate::Locker to gin * refactor: convert contextBridge to gin * refactor: convert contentTracing to gin * refactor: remove callback converter of native_mate * refactor: remove file_dialog_converter and native_window_converter from native_mate * refactor: convert webFrame to gin * refactor: move blink_converter to gin * refactor: remove net_converter from native_mate * refactor: remove event_emitter_caller_deprecated * refactor: remove gurl_converter from native_mate * refactor: remove file_path and string16_converter from native_mate * refactor: remove image_converter from native_mate * refactor: move value_converter to gin
101 lines
3 KiB
C++
101 lines
3 KiB
C++
// Copyright (c) 2019 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef SHELL_COMMON_GIN_CONVERTERS_NET_CONVERTER_H_
|
|
#define SHELL_COMMON_GIN_CONVERTERS_NET_CONVERTER_H_
|
|
|
|
#include "gin/converter.h"
|
|
#include "shell/browser/net/cert_verifier_client.h"
|
|
|
|
namespace base {
|
|
class DictionaryValue;
|
|
class ListValue;
|
|
} // namespace base
|
|
|
|
namespace net {
|
|
class AuthChallengeInfo;
|
|
class URLRequest;
|
|
class X509Certificate;
|
|
class HttpResponseHeaders;
|
|
struct CertPrincipal;
|
|
} // namespace net
|
|
|
|
namespace network {
|
|
struct ResourceRequest;
|
|
}
|
|
|
|
namespace gin {
|
|
|
|
template <>
|
|
struct Converter<net::AuthChallengeInfo> {
|
|
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
|
|
const net::AuthChallengeInfo& val);
|
|
};
|
|
|
|
template <>
|
|
struct Converter<scoped_refptr<net::X509Certificate>> {
|
|
static v8::Local<v8::Value> ToV8(
|
|
v8::Isolate* isolate,
|
|
const scoped_refptr<net::X509Certificate>& val);
|
|
|
|
static bool FromV8(v8::Isolate* isolate,
|
|
v8::Local<v8::Value> val,
|
|
scoped_refptr<net::X509Certificate>* out);
|
|
};
|
|
|
|
template <>
|
|
struct Converter<net::CertPrincipal> {
|
|
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
|
|
const net::CertPrincipal& val);
|
|
};
|
|
|
|
template <>
|
|
struct Converter<net::HttpResponseHeaders*> {
|
|
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
|
|
net::HttpResponseHeaders* headers);
|
|
static bool FromV8(v8::Isolate* isolate,
|
|
v8::Local<v8::Value> val,
|
|
net::HttpResponseHeaders* out);
|
|
};
|
|
|
|
template <>
|
|
struct Converter<net::HttpRequestHeaders> {
|
|
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
|
|
const net::HttpRequestHeaders& headers);
|
|
static bool FromV8(v8::Isolate* isolate,
|
|
v8::Local<v8::Value> val,
|
|
net::HttpRequestHeaders* out);
|
|
};
|
|
|
|
template <>
|
|
struct Converter<network::ResourceRequestBody> {
|
|
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
|
|
const network::ResourceRequestBody& val);
|
|
};
|
|
|
|
template <>
|
|
struct Converter<scoped_refptr<network::ResourceRequestBody>> {
|
|
static v8::Local<v8::Value> ToV8(
|
|
v8::Isolate* isolate,
|
|
const scoped_refptr<network::ResourceRequestBody>& val);
|
|
static bool FromV8(v8::Isolate* isolate,
|
|
v8::Local<v8::Value> val,
|
|
scoped_refptr<network::ResourceRequestBody>* out);
|
|
};
|
|
|
|
template <>
|
|
struct Converter<network::ResourceRequest> {
|
|
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
|
|
const network::ResourceRequest& val);
|
|
};
|
|
|
|
template <>
|
|
struct Converter<electron::VerifyRequestParams> {
|
|
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
|
|
electron::VerifyRequestParams val);
|
|
};
|
|
|
|
} // namespace gin
|
|
|
|
#endif // SHELL_COMMON_GIN_CONVERTERS_NET_CONVERTER_H_
|