feat: expose location and modifiers on before-input-event (#29850)

* feat: expose location and modifiers on before-input-event

* lint
This commit is contained in:
Jeremy Rose 2021-07-14 04:50:02 -07:00 committed by GitHub
parent 1897b14af3
commit 4d0475c9ce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 84 additions and 19 deletions

View file

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