DomAutomationController   20 content/renderer/dom_automation_controller.cc gin::WrapperInfo DomAutomationController::kWrapperInfo = {
DomAutomationController   24 content/renderer/dom_automation_controller.cc void DomAutomationController::Install(RenderFrame* render_frame,
DomAutomationController   34 content/renderer/dom_automation_controller.cc   gin::Handle<DomAutomationController> controller =
DomAutomationController   35 content/renderer/dom_automation_controller.cc       gin::CreateHandle(isolate, new DomAutomationController(render_frame));
DomAutomationController   41 content/renderer/dom_automation_controller.cc DomAutomationController::DomAutomationController(RenderFrame* render_frame)
DomAutomationController   44 content/renderer/dom_automation_controller.cc DomAutomationController::~DomAutomationController() {}
DomAutomationController   46 content/renderer/dom_automation_controller.cc gin::ObjectTemplateBuilder DomAutomationController::GetObjectTemplateBuilder(
DomAutomationController   48 content/renderer/dom_automation_controller.cc   return gin::Wrappable<DomAutomationController>::GetObjectTemplateBuilder(
DomAutomationController   50 content/renderer/dom_automation_controller.cc       .SetMethod("send", &DomAutomationController::SendMsg)
DomAutomationController   51 content/renderer/dom_automation_controller.cc       .SetMethod("setAutomationId", &DomAutomationController::SetAutomationId)
DomAutomationController   52 content/renderer/dom_automation_controller.cc       .SetMethod("sendJSON", &DomAutomationController::SendJSON)
DomAutomationController   53 content/renderer/dom_automation_controller.cc       .SetMethod("sendWithId", &DomAutomationController::SendWithId);
DomAutomationController   56 content/renderer/dom_automation_controller.cc void DomAutomationController::OnDestruct() {}
DomAutomationController   58 content/renderer/dom_automation_controller.cc bool DomAutomationController::SendMsg(const gin::Arguments& args) {
DomAutomationController   94 content/renderer/dom_automation_controller.cc bool DomAutomationController::SendJSON(const std::string& json) {
DomAutomationController  107 content/renderer/dom_automation_controller.cc bool DomAutomationController::SendWithId(int automation_id,
DomAutomationController  115 content/renderer/dom_automation_controller.cc bool DomAutomationController::SetAutomationId(int automation_id) {
DomAutomationController   86 content/renderer/dom_automation_controller.h class DomAutomationController : public gin::Wrappable<DomAutomationController>,
DomAutomationController  109 content/renderer/dom_automation_controller.h   explicit DomAutomationController(RenderFrame* render_view);
DomAutomationController  110 content/renderer/dom_automation_controller.h   virtual ~DomAutomationController();
DomAutomationController  121 content/renderer/dom_automation_controller.h   DISALLOW_COPY_AND_ASSIGN(DomAutomationController);
DomAutomationController 1840 content/renderer/render_frame_impl.cc     DomAutomationController::Install(this, frame);