2019-08-14 05:15:34 +00:00
|
|
|
// 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_
|
|
|
|
|
2019-11-27 01:01:13 +00:00
|
|
|
#include <string>
|
|
|
|
|
2019-08-14 05:15:34 +00:00
|
|
|
#include "gin/converter.h"
|
2019-11-27 01:01:13 +00:00
|
|
|
#include "services/network/public/mojom/fetch_api.mojom.h"
|
2019-08-14 05:15:34 +00:00
|
|
|
#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;
|
2019-11-27 01:01:13 +00:00
|
|
|
class HttpVersion;
|
2019-08-14 05:15:34 +00:00
|
|
|
} // 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);
|
|
|
|
};
|
|
|
|
|
2019-08-16 01:19:05 +00:00
|
|
|
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);
|
|
|
|
};
|
|
|
|
|
2019-08-21 02:14:21 +00:00
|
|
|
template <>
|
|
|
|
struct Converter<network::ResourceRequestBody> {
|
|
|
|
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
|
|
|
|
const network::ResourceRequestBody& val);
|
|
|
|
};
|
|
|
|
|
2019-10-25 13:03:28 +00:00
|
|
|
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);
|
|
|
|
};
|
|
|
|
|
2019-08-14 05:15:34 +00:00
|
|
|
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);
|
|
|
|
};
|
|
|
|
|
2019-11-27 01:01:13 +00:00
|
|
|
template <>
|
|
|
|
struct Converter<net::HttpVersion> {
|
|
|
|
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
|
|
|
|
const net::HttpVersion& val);
|
|
|
|
};
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct Converter<net::RedirectInfo> {
|
|
|
|
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
|
|
|
|
const net::RedirectInfo& val);
|
|
|
|
};
|
|
|
|
|
2019-08-14 05:15:34 +00:00
|
|
|
} // namespace gin
|
|
|
|
|
|
|
|
#endif // SHELL_COMMON_GIN_CONVERTERS_NET_CONVERTER_H_
|