| 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 bool IsCollapsed(); | 110 bool IsCollapsed(); |
| 111 bool HasPopup(); | 111 bool HasPopup(); |
| 112 bool IsValid(); | 112 bool IsValid(); |
| 113 bool IsReadOnly(); | 113 bool IsReadOnly(); |
| 114 unsigned int BackgroundColor(); | 114 unsigned int BackgroundColor(); |
| 115 unsigned int Color(); | 115 unsigned int Color(); |
| 116 // For input elements of type color. | 116 // For input elements of type color. |
| 117 unsigned int ColorValue(); | 117 unsigned int ColorValue(); |
| 118 std::string FontFamily(); | 118 std::string FontFamily(); |
| 119 float FontSize(); | 119 float FontSize(); |
| 120 std::string Autocomplete(); |
| 121 std::string Current(); |
| 122 std::string Invalid(); |
| 123 std::string KeyShortcuts(); |
| 124 std::string Live(); |
| 120 std::string Orientation(); | 125 std::string Orientation(); |
| 126 std::string Relevant(); |
| 127 std::string RoleDescription(); |
| 128 std::string Sort(); |
| 121 int PosInSet(); | 129 int PosInSet(); |
| 122 int SetSize(); | 130 int SetSize(); |
| 123 int ClickPointX(); | 131 int ClickPointX(); |
| 124 int ClickPointY(); | 132 int ClickPointY(); |
| 125 int32_t RowCount(); | 133 int32_t RowCount(); |
| 126 int32_t RowHeadersCount(); | 134 int32_t RowHeadersCount(); |
| 127 int32_t ColumnCount(); | 135 int32_t ColumnCount(); |
| 128 int32_t ColumnHeadersCount(); | 136 int32_t ColumnHeadersCount(); |
| 129 bool IsClickable(); | 137 bool IsClickable(); |
| 130 bool IsButtonStateMixed(); | 138 bool IsButtonStateMixed(); |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 v8::Local<v8::Object> GetOrCreate(const blink::WebAXObject&) override; | 234 v8::Local<v8::Object> GetOrCreate(const blink::WebAXObject&) override; |
| 227 | 235 |
| 228 private: | 236 private: |
| 229 typedef v8::PersistentValueVector<v8::Object> ElementList; | 237 typedef v8::PersistentValueVector<v8::Object> ElementList; |
| 230 ElementList elements_; | 238 ElementList elements_; |
| 231 }; | 239 }; |
| 232 | 240 |
| 233 } // namespace test_runner | 241 } // namespace test_runner |
| 234 | 242 |
| 235 #endif // CONTENT_SHELL_TEST_RUNNER_WEB_AX_OBJECT_PROXY_H_ | 243 #endif // CONTENT_SHELL_TEST_RUNNER_WEB_AX_OBJECT_PROXY_H_ |
| OLD | NEW |