Add ToV8 converter for NativeWebKeyboardEvent

This commit is contained in:
Kevin Sawicki 2016-12-13 15:52:37 -08:00
parent 3237c6751a
commit 7842040d9d
3 changed files with 27 additions and 20 deletions

View file

@ -45,6 +45,8 @@ template<>
struct Converter<content::NativeWebKeyboardEvent> {
static bool FromV8(v8::Isolate* isolate, v8::Local<v8::Value> val,
content::NativeWebKeyboardEvent* out);
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
const content::NativeWebKeyboardEvent& in);
};
template<>