| OLD | NEW |
| 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 #ifndef COMPONENTS_TEST_RUNNER_WEB_AX_OBJECT_PROXY_H_ | 5 #ifndef COMPONENTS_TEST_RUNNER_WEB_AX_OBJECT_PROXY_H_ |
| 6 #define COMPONENTS_TEST_RUNNER_WEB_AX_OBJECT_PROXY_H_ | 6 #define COMPONENTS_TEST_RUNNER_WEB_AX_OBJECT_PROXY_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 int SelectionEnd(); | 90 int SelectionEnd(); |
| 91 int SelectionStartLineNumber(); | 91 int SelectionStartLineNumber(); |
| 92 int SelectionEndLineNumber(); | 92 int SelectionEndLineNumber(); |
| 93 | 93 |
| 94 bool IsEnabled(); | 94 bool IsEnabled(); |
| 95 bool IsRequired(); | 95 bool IsRequired(); |
| 96 bool IsEditable(); | 96 bool IsEditable(); |
| 97 bool IsRichlyEditable(); | 97 bool IsRichlyEditable(); |
| 98 bool IsFocused(); | 98 bool IsFocused(); |
| 99 bool IsFocusable(); | 99 bool IsFocusable(); |
| 100 bool IsModal(); |
| 100 bool IsSelected(); | 101 bool IsSelected(); |
| 101 bool IsSelectable(); | 102 bool IsSelectable(); |
| 102 bool IsMultiSelectable(); | 103 bool IsMultiSelectable(); |
| 103 bool IsSelectedOptionActive(); | 104 bool IsSelectedOptionActive(); |
| 104 bool IsExpanded(); | 105 bool IsExpanded(); |
| 105 bool IsChecked(); | 106 bool IsChecked(); |
| 106 bool IsVisible(); | 107 bool IsVisible(); |
| 107 bool IsOffScreen(); | 108 bool IsOffScreen(); |
| 108 bool IsCollapsed(); | 109 bool IsCollapsed(); |
| 109 bool HasPopup(); | 110 bool HasPopup(); |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 v8::Local<v8::Object> GetOrCreate(const blink::WebAXObject&) override; | 224 v8::Local<v8::Object> GetOrCreate(const blink::WebAXObject&) override; |
| 224 | 225 |
| 225 private: | 226 private: |
| 226 typedef v8::PersistentValueVector<v8::Object> ElementList; | 227 typedef v8::PersistentValueVector<v8::Object> ElementList; |
| 227 ElementList elements_; | 228 ElementList elements_; |
| 228 }; | 229 }; |
| 229 | 230 |
| 230 } // namespace test_runner | 231 } // namespace test_runner |
| 231 | 232 |
| 232 #endif // COMPONENTS_TEST_RUNNER_WEB_AX_OBJECT_PROXY_H_ | 233 #endif // COMPONENTS_TEST_RUNNER_WEB_AX_OBJECT_PROXY_H_ |
| OLD | NEW |