| 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 CONTENT_SHELL_TEST_RUNNER_WEB_AX_OBJECT_PROXY_H_ | 5 #ifndef CONTENT_SHELL_TEST_RUNNER_WEB_AX_OBJECT_PROXY_H_ |
| 6 #define CONTENT_SHELL_TEST_RUNNER_WEB_AX_OBJECT_PROXY_H_ | 6 #define CONTENT_SHELL_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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 float FontSize(); | 122 float FontSize(); |
| 123 std::string Autocomplete(); | 123 std::string Autocomplete(); |
| 124 std::string Current(); | 124 std::string Current(); |
| 125 std::string Invalid(); | 125 std::string Invalid(); |
| 126 std::string KeyShortcuts(); | 126 std::string KeyShortcuts(); |
| 127 std::string Live(); | 127 std::string Live(); |
| 128 std::string Orientation(); | 128 std::string Orientation(); |
| 129 std::string Relevant(); | 129 std::string Relevant(); |
| 130 std::string RoleDescription(); | 130 std::string RoleDescription(); |
| 131 std::string Sort(); | 131 std::string Sort(); |
| 132 int HierarchicalLevel(); |
| 132 int PosInSet(); | 133 int PosInSet(); |
| 133 int SetSize(); | 134 int SetSize(); |
| 134 int ClickPointX(); | 135 int ClickPointX(); |
| 135 int ClickPointY(); | 136 int ClickPointY(); |
| 136 int32_t RowCount(); | 137 int32_t RowCount(); |
| 137 int32_t RowHeadersCount(); | 138 int32_t RowHeadersCount(); |
| 138 int32_t ColumnCount(); | 139 int32_t ColumnCount(); |
| 139 int32_t ColumnHeadersCount(); | 140 int32_t ColumnHeadersCount(); |
| 140 bool IsClickable(); | 141 bool IsClickable(); |
| 141 bool IsButtonStateMixed(); | 142 bool IsButtonStateMixed(); |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 v8::Local<v8::Object> GetOrCreate(const blink::WebAXObject&) override; | 238 v8::Local<v8::Object> GetOrCreate(const blink::WebAXObject&) override; |
| 238 | 239 |
| 239 private: | 240 private: |
| 240 typedef v8::PersistentValueVector<v8::Object> ElementList; | 241 typedef v8::PersistentValueVector<v8::Object> ElementList; |
| 241 ElementList elements_; | 242 ElementList elements_; |
| 242 }; | 243 }; |
| 243 | 244 |
| 244 } // namespace test_runner | 245 } // namespace test_runner |
| 245 | 246 |
| 246 #endif // CONTENT_SHELL_TEST_RUNNER_WEB_AX_OBJECT_PROXY_H_ | 247 #endif // CONTENT_SHELL_TEST_RUNNER_WEB_AX_OBJECT_PROXY_H_ |
| OLD | NEW |