Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(68)

Side by Side Diff: ui/accessibility/ax_enums.idl

Issue 2522543004: Add support for retrieving image thumbnails as part of the accessibility tree. (Closed)
Patch Set: Clarified maxSize Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/WebKit/public/web/WebAXObject.h ('k') | ui/accessibility/ax_node_data.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // TODO(nektar): Migrate entire file to Mojoq. 5 // TODO(nektar): Migrate entire file to Mojoq.
6 // These should be kept in sync with third_party/WebKit/public/web/WebAXEnums.h 6 // These should be kept in sync with third_party/WebKit/public/web/WebAXEnums.h
7 // until the Chromium and Blink trees are merged. 7 // until the Chromium and Blink trees are merged.
8 [camel_case_enum_to_string=true] namespace ui { 8 [camel_case_enum_to_string=true] namespace ui {
9 9
10 // For new entries to the following four enums, also add to 10 // For new entries to the following four enums, also add to
(...skipping 20 matching lines...) Expand all
31 autocorrection_occured, // Unknown: http://crbug.com/392498 31 autocorrection_occured, // Unknown: http://crbug.com/392498
32 blur, // Remove: http://crbug.com/392502 32 blur, // Remove: http://crbug.com/392502
33 checked_state_changed, // Implicit 33 checked_state_changed, // Implicit
34 children_changed, 34 children_changed,
35 clicked, 35 clicked,
36 document_selection_changed, 36 document_selection_changed,
37 expanded_changed, // Web 37 expanded_changed, // Web
38 focus, 38 focus,
39 hide, // Remove: http://crbug.com/392502 39 hide, // Remove: http://crbug.com/392502
40 hover, 40 hover,
41 image_frame_updated, // Web
41 invalid_status_changed, // Implicit 42 invalid_status_changed, // Implicit
42 layout_complete, // Web 43 layout_complete, // Web
43 live_region_created, // Implicit 44 live_region_created, // Implicit
44 live_region_changed, // Web 45 live_region_changed, // Web
45 load_complete, // Web 46 load_complete, // Web
46 location_changed, // Web 47 location_changed, // Web
47 menu_end, // Native / Win 48 menu_end, // Native / Win
48 menu_list_item_selected, // Web 49 menu_list_item_selected, // Web
49 menu_list_value_changed, // Web 50 menu_list_value_changed, // Web
50 menu_popup_end, // Native / Win 51 menu_popup_end, // Native / Win
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 blur, 236 blur,
236 237
237 // Decrement a slider or range control by one step value. 238 // Decrement a slider or range control by one step value.
238 decrement, 239 decrement,
239 240
240 // Do the default action for an object, typically this means "click". 241 // Do the default action for an object, typically this means "click".
241 do_default, 242 do_default,
242 243
243 focus, 244 focus,
244 245
246 // Return the content of this image object in the image_data attribute.
247 get_image_data,
248
245 // Given a point, find the object it corresponds to and fire a 249 // Given a point, find the object it corresponds to and fire a
246 // HOVER event on it in response. 250 // HOVER event on it in response.
247 hit_test, 251 hit_test,
248 252
249 // Increment a slider or range control by one step value. 253 // Increment a slider or range control by one step value.
250 increment, 254 increment,
251 255
252 // Delete any selected text in the control's text value and 256 // Delete any selected text in the control's text value and
253 // insert |AXActionData::value| in its place, like when typing or pasting. 257 // insert |AXActionData::value| in its place, like when typing or pasting.
254 replace_selected_text, 258 replace_selected_text,
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 // Only used when invalid_state == invalid_state_other. 301 // Only used when invalid_state == invalid_state_other.
298 aria_invalid_value, 302 aria_invalid_value,
299 auto_complete, 303 auto_complete,
300 container_live_relevant, 304 container_live_relevant,
301 container_live_status, 305 container_live_status,
302 description, 306 description,
303 display, 307 display,
304 // Only present when different from parent. 308 // Only present when different from parent.
305 font_family, 309 font_family,
306 html_tag, 310 html_tag,
311 image_data_url,
307 // Only present when different from parent. 312 // Only present when different from parent.
308 language, 313 language,
309 name, 314 name,
310 live_relevant, 315 live_relevant,
311 live_status, 316 live_status,
312 placeholder, 317 placeholder,
313 role, 318 role,
314 shortcut, 319 shortcut,
315 url, 320 url,
316 value 321 value
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
603 // First node is before the second one. 608 // First node is before the second one.
604 before, 609 before,
605 610
606 // Nodes are the same. 611 // Nodes are the same.
607 equal, 612 equal,
608 613
609 // First node is after the second one. 614 // First node is after the second one.
610 after 615 after
611 }; 616 };
612 }; 617 };
OLDNEW
« no previous file with comments | « third_party/WebKit/public/web/WebAXObject.h ('k') | ui/accessibility/ax_node_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698