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

Side by Side Diff: third_party/WebKit/public/web/WebAXEnums.h

Issue 2863703003: A11y: Rename AXSupportedAction to AXDefaultActionVerb. (Closed)
Patch Set: Rebase. Created 3 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 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 kWebAXStatePressed, 221 kWebAXStatePressed,
222 kWebAXStateProtected, 222 kWebAXStateProtected,
223 kWebAXStateReadonly, 223 kWebAXStateReadonly,
224 kWebAXStateRequired, 224 kWebAXStateRequired,
225 kWebAXStateSelectable, 225 kWebAXStateSelectable,
226 kWebAXStateSelected, 226 kWebAXStateSelected,
227 kWebAXStateVertical, 227 kWebAXStateVertical,
228 kWebAXStateVisited, 228 kWebAXStateVisited,
229 }; 229 };
230 230
231 enum class WebAXSupportedAction { 231 enum class WebAXDefaultActionVerb {
232 kNone = 0, 232 kNone = 0,
233 kActivate, 233 kActivate,
234 kCheck, 234 kCheck,
235 kClick, 235 kClick,
236 kJump, 236 kJump,
237 kOpen, 237 kOpen,
238 kPress, 238 kPress,
239 kSelect, 239 kSelect,
240 kUncheck 240 kUncheck
241 }; 241 };
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
387 // empty vector. 387 // empty vector.
388 enum class WebAXObjectVectorAttribute { 388 enum class WebAXObjectVectorAttribute {
389 kAriaControls, 389 kAriaControls,
390 kAriaDetails, 390 kAriaDetails,
391 kAriaFlowTo, 391 kAriaFlowTo,
392 }; 392 };
393 393
394 } // namespace blink 394 } // namespace blink
395 395
396 #endif 396 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebAXObject.cpp ('k') | third_party/WebKit/public/web/WebAXObject.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698