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

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: Remove unused function 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
« no previous file with comments | « content/test/accessibility_browser_test_utils.cc ('k') | no next file » | 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 // 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 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 word_ends 344 word_ends
344 }; 345 };
345 346
346 [cpp_enum_prefix_override="ax"] enum AXTextDirection { 347 [cpp_enum_prefix_override="ax"] enum AXTextDirection {
347 text_direction_lr, 348 text_direction_lr,
348 text_direction_rl, 349 text_direction_rl,
349 text_direction_tb, 350 text_direction_tb,
350 text_direction_bt 351 text_direction_bt
351 }; 352 };
352 }; 353 };
OLDNEW
« no previous file with comments | « content/test/accessibility_browser_test_utils.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698