// 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 "shell/common/native_mate_converters/value_converter.h" #include #include "base/values.h" #include "shell/common/native_mate_converters/v8_value_converter.h" namespace mate { bool Converter::FromV8(v8::Isolate* isolate, v8::Local val, base::DictionaryValue* out) { atom::V8ValueConverter converter; std::unique_ptr value( converter.FromV8Value(val, isolate->GetCurrentContext())); if (value && value->is_dict()) { out->Swap(static_cast(value.get())); return true; } else { return false; } } v8::Local Converter::ToV8( v8::Isolate* isolate, const base::DictionaryValue& val) { atom::V8ValueConverter converter; return converter.ToV8Value(&val, isolate->GetCurrentContext()); } bool Converter::FromV8(v8::Isolate* isolate, v8::Local val, base::Value* out) { atom::V8ValueConverter converter; std::unique_ptr value( converter.FromV8Value(val, isolate->GetCurrentContext())); if (value) { *out = value->Clone(); return true; } else { return false; } } v8::Local Converter::ToV8(v8::Isolate* isolate, const base::Value& val) { atom::V8ValueConverter converter; return converter.ToV8Value(&val, isolate->GetCurrentContext()); } bool Converter::FromV8(v8::Isolate* isolate, v8::Local val, base::ListValue* out) { atom::V8ValueConverter converter; std::unique_ptr value( converter.FromV8Value(val, isolate->GetCurrentContext())); if (value->is_list()) { out->Swap(static_cast(value.get())); return true; } else { return false; } } v8::Local Converter::ToV8( v8::Isolate* isolate, const base::ListValue& val) { atom::V8ValueConverter converter; return converter.ToV8Value(&val, isolate->GetCurrentContext()); } } // namespace mate