// Copyright (c) 2014 GitHub, Inc. All rights reserved. // 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_GURL_CONVERTER_H_ #define ATOM_COMMON_NATIVE_MATE_CONVERTERS_GURL_CONVERTER_H_ #include #include "native_mate/converter.h" #include "url/gurl.h" namespace mate { template<> struct Converter { static v8::Handle ToV8(v8::Isolate* isolate, const GURL& val) { return ConvertToV8(isolate, val.spec()); } static bool FromV8(v8::Isolate* isolate, v8::Handle val, GURL* out) { std::string url; if (Converter::FromV8(isolate, val, &url)) { *out = GURL(url); return true; } else { return false; } } }; } // namespace mate #endif // ATOM_COMMON_NATIVE_MATE_CONVERTERS_GURL_CONVERTER_H_