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

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

Issue 290633002: Implement Android accessible hit testing using an IPC to the renderer process. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@better_logging_2
Patch Set: Tweak to algorithm to find highest leaf ancestor Created 6 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 namespace ui { 7 namespace ui {
8 enum AXEvent { 8 enum AXEvent {
9 activedescendantchanged, 9 activedescendantchanged,
10 alert, 10 alert,
11 aria_attribute_changed, 11 aria_attribute_changed,
12 autocorrection_occured, 12 autocorrection_occured,
13 blur, 13 blur,
14 checked_state_changed, 14 checked_state_changed,
15 children_changed, 15 children_changed,
16 focus, 16 focus,
17 hide, 17 hide,
18 hover,
18 invalid_status_changed, 19 invalid_status_changed,
19 layout_complete, 20 layout_complete,
20 live_region_changed, 21 live_region_changed,
21 load_complete, 22 load_complete,
22 location_changed, 23 location_changed,
23 menu_end, 24 menu_end,
24 menu_list_item_selected, 25 menu_list_item_selected,
25 menu_list_value_changed, 26 menu_list_value_changed,
26 menu_popup_end, 27 menu_popup_end,
27 menu_popup_start, 28 menu_popup_start,
(...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after
343 ax_attr_word_ends 344 ax_attr_word_ends
344 }; 345 };
345 346
346 [cpp_omit_enum_type] enum AXTextDirection { 347 [cpp_omit_enum_type] enum AXTextDirection {
347 ax_text_direction_lr, 348 ax_text_direction_lr,
348 ax_text_direction_rl, 349 ax_text_direction_rl,
349 ax_text_direction_tb, 350 ax_text_direction_tb,
350 ax_text_direction_bt 351 ax_text_direction_bt
351 }; 352 };
352 }; 353 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698