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 559343002: Add AX attribute conversion for input type (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add AX attribute conversion for input type Created 6 years, 2 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 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 description, 228 description,
229 display, 229 display,
230 help, 230 help,
231 html_tag, 231 html_tag,
232 name, 232 name,
233 live_relevant, 233 live_relevant,
234 live_status, 234 live_status,
235 role, 235 role,
236 shortcut, 236 shortcut,
237 url, 237 url,
238 value 238 value,
239
240 // input attributes
241 text_input_type
dmazzoni 2014/09/26 15:29:16 No need to separate this one, just sort it with th
je_julie(Not used) 2014/09/28 14:57:26 I'll update it. On 2014/09/26 15:29:16, dmazzoni w
239 }; 242 };
240 243
241 [cpp_enum_prefix_override="ax_attr"] enum AXIntAttribute { 244 [cpp_enum_prefix_override="ax_attr"] enum AXIntAttribute {
242 // Scrollable container attributes. 245 // Scrollable container attributes.
243 scroll_x, 246 scroll_x,
244 scroll_x_min, 247 scroll_x_min,
245 scroll_x_max, 248 scroll_x_max,
246 scroll_y, 249 scroll_y,
247 scroll_y_min, 250 scroll_y_min,
248 scroll_y_max, 251 scroll_y_max,
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
368 word_ends 371 word_ends
369 }; 372 };
370 373
371 [cpp_enum_prefix_override="ax"] enum AXTextDirection { 374 [cpp_enum_prefix_override="ax"] enum AXTextDirection {
372 text_direction_lr, 375 text_direction_lr,
373 text_direction_rl, 376 text_direction_rl,
374 text_direction_tb, 377 text_direction_tb,
375 text_direction_bt 378 text_direction_bt
376 }; 379 };
377 }; 380 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698