electron/shell/common/native_mate_converters/gurl_converter.h

28 lines
800 B
C
Raw Normal View History

// Copyright (c) 2014 GitHub, Inc.
2014-04-25 09:49:37 +00:00
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
2019-06-19 20:56:58 +00:00
#ifndef SHELL_COMMON_NATIVE_MATE_CONVERTERS_GURL_CONVERTER_H_
#define SHELL_COMMON_NATIVE_MATE_CONVERTERS_GURL_CONVERTER_H_
#include "native_mate/converter.h"
2019-08-07 07:18:26 +00:00
#include "shell/common/gin_converters/gurl_converter.h"
namespace mate {
2018-04-18 01:44:10 +00:00
template <>
struct Converter<GURL> {
2018-04-18 01:44:10 +00:00
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate, const GURL& val) {
2019-08-07 07:18:26 +00:00
return gin::ConvertToV8(isolate, val);
}
static bool FromV8(v8::Isolate* isolate,
2015-05-22 11:11:22 +00:00
v8::Local<v8::Value> val,
GURL* out) {
2019-08-07 07:18:26 +00:00
return gin::ConvertFromV8(isolate, val, out);
}
};
} // namespace mate
2019-06-19 20:56:58 +00:00
#endif // SHELL_COMMON_NATIVE_MATE_CONVERTERS_GURL_CONVERTER_H_