// Copyright (c) 2014 GitHub, Inc. // Use of this source code is governed by the MIT license that can be // found in the LICENSE file. #include "shell/browser/api/event.h" #include #include "native_mate/object_template_builder_deprecated.h" #include "shell/common/native_mate_converters/blink_converter.h" namespace mate { Event::Event(v8::Isolate* isolate) { Init(isolate); } Event::~Event() = default; void Event::SetCallback(base::Optional callback) { DCHECK(!callback_); callback_ = std::move(callback); } void Event::PreventDefault(v8::Isolate* isolate) { GetWrapper() ->Set(isolate->GetCurrentContext(), StringToV8(isolate, "defaultPrevented"), v8::True(isolate)) .Check(); } bool Event::SendReply(v8::Isolate* isolate, v8::Local result) { if (!callback_) return false; blink::CloneableMessage message; if (!ConvertFromV8(isolate, result, &message)) { return false; } std::move(*callback_).Run(std::move(message)); callback_.reset(); return true; } // static Handle Event::Create(v8::Isolate* isolate) { return mate::CreateHandle(isolate, new Event(isolate)); } // static void Event::BuildPrototype(v8::Isolate* isolate, v8::Local prototype) { prototype->SetClassName(mate::StringToV8(isolate, "Event")); mate::ObjectTemplateBuilder(isolate, prototype->PrototypeTemplate()) .SetMethod("preventDefault", &Event::PreventDefault) .SetMethod("sendReply", &Event::SendReply); } } // namespace mate