9f328abe19
* add new native_mate converters for base::Value * fix converter swapping * remove createDeepCopy from browser/api * replace missing ListValue converter * convert bulk of remaining createDeepCopy instances * convert last remaining instances of createDeepCopy * incremental progress and helper methods for value conversion * convert Get and add template function for GetString * final DictionaryValue method conversions * remove usage of base::DictionaryValue in web_contents_preferences * use IsEnabled helper where possible * Update atom_api_web_view_manager.cc
74 lines
2.4 KiB
C++
74 lines
2.4 KiB
C++
// Copyright (c) 2014 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "atom/common/native_mate_converters/value_converter.h"
|
|
|
|
#include "atom/common/native_mate_converters/v8_value_converter.h"
|
|
#include "base/values.h"
|
|
|
|
namespace mate {
|
|
|
|
bool Converter<base::DictionaryValue>::FromV8(v8::Isolate* isolate,
|
|
v8::Local<v8::Value> val,
|
|
base::DictionaryValue* out) {
|
|
atom::V8ValueConverter converter;
|
|
std::unique_ptr<base::Value> value(
|
|
converter.FromV8Value(val, isolate->GetCurrentContext()));
|
|
if (value && value->is_dict()) {
|
|
out->Swap(static_cast<base::DictionaryValue*>(value.get()));
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
v8::Local<v8::Value> Converter<base::DictionaryValue>::ToV8(
|
|
v8::Isolate* isolate,
|
|
const base::DictionaryValue& val) {
|
|
atom::V8ValueConverter converter;
|
|
return converter.ToV8Value(&val, isolate->GetCurrentContext());
|
|
}
|
|
|
|
bool Converter<base::Value>::FromV8(v8::Isolate* isolate,
|
|
v8::Local<v8::Value> val,
|
|
base::Value* out) {
|
|
atom::V8ValueConverter converter;
|
|
std::unique_ptr<base::Value> value(
|
|
converter.FromV8Value(val, isolate->GetCurrentContext()));
|
|
if (value) {
|
|
*out = value->Clone();
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
v8::Local<v8::Value> Converter<base::Value>::ToV8(v8::Isolate* isolate,
|
|
const base::Value& val) {
|
|
atom::V8ValueConverter converter;
|
|
return converter.ToV8Value(&val, isolate->GetCurrentContext());
|
|
}
|
|
|
|
bool Converter<base::ListValue>::FromV8(v8::Isolate* isolate,
|
|
v8::Local<v8::Value> val,
|
|
base::ListValue* out) {
|
|
atom::V8ValueConverter converter;
|
|
std::unique_ptr<base::Value> value(
|
|
converter.FromV8Value(val, isolate->GetCurrentContext()));
|
|
if (value->is_list()) {
|
|
out->Swap(static_cast<base::ListValue*>(value.get()));
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
v8::Local<v8::Value> Converter<base::ListValue>::ToV8(
|
|
v8::Isolate* isolate,
|
|
const base::ListValue& val) {
|
|
atom::V8ValueConverter converter;
|
|
return converter.ToV8Value(&val, isolate->GetCurrentContext());
|
|
}
|
|
|
|
} // namespace mate
|