Home | History | Annotate | Download | only in renderer

Lines Matching defs:DomAutomationController

20 gin::WrapperInfo DomAutomationController::kWrapperInfo = {
24 void DomAutomationController::Install(RenderFrame* render_frame,
34 gin::Handle<DomAutomationController> controller =
35 gin::CreateHandle(isolate, new DomAutomationController(render_frame));
40 global->Set(gin::StringToV8(isolate, "domAutomationController"),
44 DomAutomationController::DomAutomationController(RenderFrame* render_frame)
47 DomAutomationController::~DomAutomationController() {}
49 gin::ObjectTemplateBuilder DomAutomationController::GetObjectTemplateBuilder(
51 return gin::Wrappable<DomAutomationController>::GetObjectTemplateBuilder(
53 .SetMethod("send", &DomAutomationController::SendMsg)
54 .SetMethod("setAutomationId", &DomAutomationController::SetAutomationId)
55 .SetMethod("sendJSON", &DomAutomationController::SendJSON)
56 .SetMethod("sendWithId", &DomAutomationController::SendWithId);
59 void DomAutomationController::OnDestruct() {}
61 bool DomAutomationController::SendMsg(const gin::Arguments& args) {
97 bool DomAutomationController::SendJSON(const std::string& json) {
110 bool DomAutomationController::SendWithId(int automation_id,
118 bool DomAutomationController::SetAutomationId(int automation_id) {