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

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

Issue 1905263002: Correctly finds line boundaries in objects with rich text on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed standard text fields in unit test. Created 4 years, 7 months 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
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 // These should be kept in sync with third_party/WebKit/public/web/WebAXEnums.h 5 // These should be kept in sync with third_party/WebKit/public/web/WebAXEnums.h
6 // until the Chromium and Blink trees are merged. 6 // until the Chromium and Blink trees are merged.
7 [camel_case_enum_to_string=true] namespace ui { 7 [camel_case_enum_to_string=true] namespace ui {
8 8
9 // For new entries to the following three enums, also add to 9 // For new entries to the following three enums, also add to
10 // chrome/common/extensions/api/automation.idl. 10 // chrome/common/extensions/api/automation.idl.
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 // What information was used to compute the object's name 297 // What information was used to compute the object's name
298 // (of type AXNameFrom). 298 // (of type AXNameFrom).
299 name_from, 299 name_from,
300 300
301 // What information was used to compute the object's description 301 // What information was used to compute the object's description
302 // (of type AXDescriptionFrom). 302 // (of type AXDescriptionFrom).
303 description_from, 303 description_from,
304 304
305 // Relationships between this element and other elements. 305 // Relationships between this element and other elements.
306 activedescendant_id, 306 activedescendant_id,
307 next_on_line_id,
308 previous_on_line_id,
307 309
308 // Identifies a child tree which this node hosts. 310 // Identifies a child tree which this node hosts.
309 child_tree_id, 311 child_tree_id,
310 312
311 // Position or Number of items in current set of listitems or treeitems 313 // Position or Number of items in current set of listitems or treeitems
312 set_size, 314 set_size,
313 pos_in_set, 315 pos_in_set,
314 316
315 // In the case of AX_ROLE_COLOR_WELL, specifies the selected color. 317 // In the case of AX_ROLE_COLOR_WELL, specifies the selected color.
316 color_value, 318 color_value,
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
448 }; 450 };
449 451
450 [cpp_enum_prefix_override="ax"] enum AXDescriptionFrom { 452 [cpp_enum_prefix_override="ax"] enum AXDescriptionFrom {
451 description_from_uninitialized = 0, 453 description_from_uninitialized = 0,
452 description_from_attribute, 454 description_from_attribute,
453 description_from_contents, 455 description_from_contents,
454 description_from_placeholder, 456 description_from_placeholder,
455 description_from_related_element 457 description_from_related_element
456 }; 458 };
457 }; 459 };
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/accessibility/AXLayoutObject.h ('k') | ui/accessibility/ax_node_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698