32 lines
830 B
C
32 lines
830 B
C
|
// Copyright (c) 2015 GitHub, Inc.
|
||
|
// Use of this source code is governed by the MIT license that can be
|
||
|
// found in the LICENSE file.
|
||
|
|
||
|
#ifndef ATOM_COMMON_NATIVE_MATE_CONVERTERS_NET_CONVERTER_H_
|
||
|
#define ATOM_COMMON_NATIVE_MATE_CONVERTERS_NET_CONVERTER_H_
|
||
|
|
||
|
#include "native_mate/converter.h"
|
||
|
|
||
|
namespace net {
|
||
|
class AuthChallengeInfo;
|
||
|
class URLRequest;
|
||
|
}
|
||
|
|
||
|
namespace mate {
|
||
|
|
||
|
template<>
|
||
|
struct Converter<const net::URLRequest*> {
|
||
|
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
|
||
|
const net::URLRequest* val);
|
||
|
};
|
||
|
|
||
|
template<>
|
||
|
struct Converter<const net::AuthChallengeInfo*> {
|
||
|
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
|
||
|
const net::AuthChallengeInfo* val);
|
||
|
};
|
||
|
|
||
|
} // namespace mate
|
||
|
|
||
|
#endif // ATOM_COMMON_NATIVE_MATE_CONVERTERS_NET_CONVERTER_H_
|