| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |