2014-10-31 18:17:05 +00:00
|
|
|
// Copyright (c) 2014 GitHub, Inc.
|
2014-05-30 15:05:24 +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_IMAGE_CONVERTER_H_
|
|
|
|
#define ATOM_COMMON_NATIVE_MATE_CONVERTERS_IMAGE_CONVERTER_H_
|
|
|
|
|
|
|
|
#include "native_mate/converter.h"
|
|
|
|
|
|
|
|
namespace gfx {
|
2015-01-03 01:13:26 +00:00
|
|
|
class Image;
|
2014-05-30 15:05:24 +00:00
|
|
|
class ImageSkia;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace mate {
|
|
|
|
|
|
|
|
template<>
|
|
|
|
struct Converter<gfx::ImageSkia> {
|
|
|
|
static bool FromV8(v8::Isolate* isolate,
|
2015-05-22 11:11:22 +00:00
|
|
|
v8::Local<v8::Value> val,
|
2014-05-30 15:05:24 +00:00
|
|
|
gfx::ImageSkia* out);
|
|
|
|
};
|
|
|
|
|
2015-01-03 01:13:26 +00:00
|
|
|
template<>
|
|
|
|
struct Converter<gfx::Image> {
|
|
|
|
static bool FromV8(v8::Isolate* isolate,
|
2015-05-22 11:11:22 +00:00
|
|
|
v8::Local<v8::Value> val,
|
2015-01-03 01:13:26 +00:00
|
|
|
gfx::Image* out);
|
2015-05-22 11:11:22 +00:00
|
|
|
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
|
2015-02-11 13:59:08 +00:00
|
|
|
const gfx::Image& val);
|
2015-01-03 01:13:26 +00:00
|
|
|
};
|
|
|
|
|
2014-05-30 15:05:24 +00:00
|
|
|
} // namespace mate
|
|
|
|
|
|
|
|
#endif // ATOM_COMMON_NATIVE_MATE_CONVERTERS_IMAGE_CONVERTER_H_
|