HomeSort by relevance Sort by last modified time
    Searched defs:DomAutomationController (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/content/renderer/
dom_automation_controller.h 12 /* DomAutomationController class:
13 Bound to Javascript window.domAutomationController object.
24 window.domAutomationController.send(object.nodeName); // get the tag name
27 refer AutomationProxyTest.*DomAutomationController tests.
50 - DAController = DomAutomationController
62 (4) A callback is generated as a result of domAutomationController.send()
86 class DomAutomationController : public gin::Wrappable<DomAutomationController>,
109 explicit DomAutomationController(RenderFrame* render_view);
110 virtual ~DomAutomationController();
    [all...]
dom_automation_controller.cc 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
    [all...]

Completed in 49 milliseconds