refactor: native_mate => gin (cookies API) (#18036)
* convert cookie converters to gin * event_emitter GetWrapper
This commit is contained in:
parent
e9d88e965e
commit
fdf5f838f4
5 changed files with 36 additions and 21 deletions
|
@ -46,6 +46,9 @@ class EventEmitter : public Wrappable<T> {
|
|||
v8::Local<v8::Object> GetWrapper() const {
|
||||
return Wrappable<T>::GetWrapper();
|
||||
}
|
||||
v8::MaybeLocal<v8::Object> GetWrapper(v8::Isolate* isolate) const {
|
||||
return Wrappable<T>::GetWrapper(isolate);
|
||||
}
|
||||
|
||||
// this.emit(name, event, args...);
|
||||
template <typename... Args>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue