Home | History | Annotate | Download | only in browser

Lines Matching full:keys

14 namespace keys = extension_accessibility_api_constants;
36 dict->SetString(keys::kNameKey, name_);
37 dict->SetString(keys::kTypeKey, type());
46 return keys::kTypeWindow;
55 return keys::kTypeButton;
63 return keys::kTypeLink;
79 return keys::kTypeRadioButton;
85 dict->SetBoolean(keys::kCheckedKey, checked_);
86 dict->SetInteger(keys::kItemIndexKey, item_index_);
87 dict->SetInteger(keys::kItemCountKey, item_count_);
98 return keys::kTypeCheckbox;
103 dict->SetBoolean(keys::kCheckedKey, checked_);
116 return keys::kTypeTab;
121 dict->SetInteger(keys::kItemIndexKey, tab_index_);
122 dict->SetInteger(keys::kItemCountKey, tab_count_);
137 return keys::kTypeComboBox;
142 dict->SetString(keys::kValueKey, value_);
143 dict->SetInteger(keys::kItemIndexKey, item_index_);
144 dict->SetInteger(keys::kItemCountKey, item_count_);
158 return keys::kTypeTextBox;
163 dict->SetString(keys::kValueKey, value_);
164 dict->SetBoolean(keys::kPasswordKey, password_);
165 dict->SetInteger(keys::kSelectionStartKey, selection_start_);
166 dict->SetInteger(keys::kSelectionEndKey, selection_end_);
181 return keys::kTypeListBox;
186 dict->SetString(keys::kValueKey, value_);
187 dict->SetInteger(keys::kItemIndexKey, item_index_);
188 dict->SetInteger(keys::kItemCountKey, item_count_);
197 return keys::kTypeMenu;
212 return keys::kTypeMenuItem;
217 dict->SetBoolean(keys::kHasSubmenuKey, has_submenu_);
218 dict->SetInteger(keys::kItemIndexKey, item_index_);
219 dict->SetInteger(keys::kItemCountKey, item_count_);