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

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

Issue 2694903010: AX checked state changes (Closed)
Patch Set: Fix compiler error Created 3 years, 9 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 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 // Sort direction, only used for roles = WebAXRoleRowHeader and 249 // Sort direction, only used for roles = WebAXRoleRowHeader and
250 // WebAXRoleColumnHeader. 250 // WebAXRoleColumnHeader.
251 enum WebAXSortDirection { 251 enum WebAXSortDirection {
252 WebAXSortDirectionUndefined = 0, 252 WebAXSortDirectionUndefined = 0,
253 WebAXSortDirectionNone, 253 WebAXSortDirectionNone,
254 WebAXSortDirectionAscending, 254 WebAXSortDirectionAscending,
255 WebAXSortDirectionDescending, 255 WebAXSortDirectionDescending,
256 WebAXSortDirectionOther 256 WebAXSortDirectionOther
257 }; 257 };
258 258
259 enum WebAXCheckedState {
260 WebAXCheckedFalse = 0,
261 WebAXCheckedTrue,
262 WebAXCheckedMixed
263 };
264
259 // Expanded State. 265 // Expanded State.
260 // These values must match blink::AccessibilityExpanded values. 266 // These values must match blink::AccessibilityExpanded values.
261 // Enforced in AssertMatchingEnums.cpp. 267 // Enforced in AssertMatchingEnums.cpp.
262 enum WebAXExpanded { 268 enum WebAXExpanded {
263 WebAXExpandedUndefined = 0, 269 WebAXExpandedUndefined = 0,
264 WebAXExpandedCollapsed, 270 WebAXExpandedCollapsed,
265 WebAXExpandedExpanded 271 WebAXExpandedExpanded
266 }; 272 };
267 273
268 // These values must match blink::AccessibilityOrientation values. 274 // These values must match blink::AccessibilityOrientation values.
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
379 // empty vector. 385 // empty vector.
380 enum class WebAXObjectVectorAttribute { 386 enum class WebAXObjectVectorAttribute {
381 AriaControls, 387 AriaControls,
382 AriaDetails, 388 AriaDetails,
383 AriaFlowTo, 389 AriaFlowTo,
384 }; 390 };
385 391
386 } // namespace blink 392 } // namespace blink
387 393
388 #endif 394 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698