electron/atom/common/native_mate_converters/string16_converter.h

35 lines
1 KiB
C
Raw Normal View History

// Copyright (c) 2014 GitHub, Inc. All rights reserved.
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 ATOM_COMMON_NATIVE_MATE_CONVERTERS_STRING16_CONVERTER_H_
#define ATOM_COMMON_NATIVE_MATE_CONVERTERS_STRING16_CONVERTER_H_
#include "base/strings/string16.h"
#include "native_mate/converter.h"
namespace mate {
template<>
2014-06-28 11:36:57 +00:00
struct Converter<base::string16> {
static v8::Handle<v8::Value> ToV8(v8::Isolate* isolate,
2014-06-28 11:36:57 +00:00
const base::string16& val) {
2014-06-28 11:31:23 +00:00
return MATE_STRING_NEW_FROM_UTF16(
isolate, reinterpret_cast<const uint16_t*>(val.data()), val.size());
}
static bool FromV8(v8::Isolate* isolate,
v8::Handle<v8::Value> val,
2014-06-28 11:36:57 +00:00
base::string16* out) {
if (!val->IsString())
return false;
v8::String::Value s(val);
2014-06-28 11:36:57 +00:00
out->assign(reinterpret_cast<const base::char16*>(*s), s.length());
return true;
}
};
} // namespace mate
#endif // ATOM_COMMON_NATIVE_MATE_CONVERTERS_STRING16_CONVERTER_H_