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

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

Issue 2694903010: AX checked state changes (Closed)
Patch Set: git cl try Created 3 years, 8 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 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 // Sort direction, only used for roles = WebAXRoleRowHeader and 250 // Sort direction, only used for roles = WebAXRoleRowHeader and
251 // WebAXRoleColumnHeader. 251 // WebAXRoleColumnHeader.
252 enum WebAXSortDirection { 252 enum WebAXSortDirection {
253 kWebAXSortDirectionUndefined = 0, 253 kWebAXSortDirectionUndefined = 0,
254 kWebAXSortDirectionNone, 254 kWebAXSortDirectionNone,
255 kWebAXSortDirectionAscending, 255 kWebAXSortDirectionAscending,
256 kWebAXSortDirectionDescending, 256 kWebAXSortDirectionDescending,
257 kWebAXSortDirectionOther 257 kWebAXSortDirectionOther
258 }; 258 };
259 259
260 enum WebAXCheckedState {
261 WebAXCheckedFalse = 0,
262 WebAXCheckedTrue,
263 WebAXCheckedMixed
264 };
265
260 // Expanded State. 266 // Expanded State.
261 // These values must match blink::AccessibilityExpanded values. 267 // These values must match blink::AccessibilityExpanded values.
262 // Enforced in AssertMatchingEnums.cpp. 268 // Enforced in AssertMatchingEnums.cpp.
263 enum WebAXExpanded { 269 enum WebAXExpanded {
264 kWebAXExpandedUndefined = 0, 270 kWebAXExpandedUndefined = 0,
265 kWebAXExpandedCollapsed, 271 kWebAXExpandedCollapsed,
266 kWebAXExpandedExpanded 272 kWebAXExpandedExpanded
267 }; 273 };
268 274
269 // These values must match blink::AccessibilityOrientation values. 275 // These values must match blink::AccessibilityOrientation values.
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
380 // empty vector. 386 // empty vector.
381 enum class WebAXObjectVectorAttribute { 387 enum class WebAXObjectVectorAttribute {
382 kAriaControls, 388 kAriaControls,
383 kAriaDetails, 389 kAriaDetails,
384 kAriaFlowTo, 390 kAriaFlowTo,
385 }; 391 };
386 392
387 } // namespace blink 393 } // namespace blink
388 394
389 #endif 395 #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