electron/shell/common/gin_converters/value_converter.h

55 lines
1.7 KiB
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.
#ifndef ELECTRON_SHELL_COMMON_GIN_CONVERTERS_VALUE_CONVERTER_H_
#define ELECTRON_SHELL_COMMON_GIN_CONVERTERS_VALUE_CONVERTER_H_
#include "base/values.h"
#include "gin/converter.h"
namespace gin {
template <>
struct Converter<base::ValueView> {
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
const base::ValueView val);
};
2018-04-18 01:44:10 +00:00
template <>
struct Converter<base::Value::Dict> {
static bool FromV8(v8::Isolate* isolate,
2015-05-22 11:11:22 +00:00
v8::Local<v8::Value> val,
base::Value::Dict* out);
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
const base::Value::Dict& val) {
return gin::ConvertToV8(isolate, base::ValueView{val});
}
};
template <>
struct Converter<base::Value> {
static bool FromV8(v8::Isolate* isolate,
v8::Local<v8::Value> val,
base::Value* out);
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
const base::Value& val) {
return gin::ConvertToV8(isolate, base::ValueView{val});
}
};
2018-04-18 01:44:10 +00:00
template <>
struct Converter<base::Value::List> {
static bool FromV8(v8::Isolate* isolate,
2015-05-22 11:11:22 +00:00
v8::Local<v8::Value> val,
base::Value::List* out);
2015-05-22 11:11:22 +00:00
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
const base::Value::List& val) {
return gin::ConvertToV8(isolate, base::ValueView{val});
}
};
} // namespace gin
#endif // ELECTRON_SHELL_COMMON_GIN_CONVERTERS_VALUE_CONVERTER_H_