Searched defs:node_data (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/chrome/browser/extensions/api/automation_internal/
H A Dautomation_util.cc20 void PopulateNodeData(const ui::AXNodeData& node_data, argument
22 out_node_data->id = node_data.id;
23 out_node_data->role = ToString(node_data.role);
25 uint32 state_pos = 0, state_shifter = node_data.state;
35 out_node_data->location.left = node_data.location.x();
36 out_node_data->location.top = node_data.location.y();
37 out_node_data->location.width = node_data.location.width();
38 out_node_data->location.height = node_data.location.height();
40 if (!node_data.bool_attributes.empty()) {
43 for (size_t i = 0; i < node_data
[all...]

Completed in 78 milliseconds