| 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_RENDERER_TEST_RUNNER_WEB_AX_OBJECT_PROXY_H_ | 5 #ifndef CONTENT_SHELL_RENDERER_TEST_RUNNER_WEB_AX_OBJECT_PROXY_H_ |
| 6 #define CONTENT_SHELL_RENDERER_TEST_RUNNER_WEB_AX_OBJECT_PROXY_H_ | 6 #define CONTENT_SHELL_RENDERER_TEST_RUNNER_WEB_AX_OBJECT_PROXY_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 bool IsSelectedOptionActive(); | 87 bool IsSelectedOptionActive(); |
| 88 bool IsExpanded(); | 88 bool IsExpanded(); |
| 89 bool IsChecked(); | 89 bool IsChecked(); |
| 90 bool IsVisible(); | 90 bool IsVisible(); |
| 91 bool IsOffScreen(); | 91 bool IsOffScreen(); |
| 92 bool IsCollapsed(); | 92 bool IsCollapsed(); |
| 93 bool HasPopup(); | 93 bool HasPopup(); |
| 94 bool IsValid(); | 94 bool IsValid(); |
| 95 bool IsReadOnly(); | 95 bool IsReadOnly(); |
| 96 std::string Orientation(); | 96 std::string Orientation(); |
| 97 int PosInSet(); |
| 98 int SetSize(); |
| 97 int ClickPointX(); | 99 int ClickPointX(); |
| 98 int ClickPointY(); | 100 int ClickPointY(); |
| 99 int32_t RowCount(); | 101 int32_t RowCount(); |
| 100 int32_t RowHeadersCount(); | 102 int32_t RowHeadersCount(); |
| 101 int32_t ColumnCount(); | 103 int32_t ColumnCount(); |
| 102 int32_t ColumnHeadersCount(); | 104 int32_t ColumnHeadersCount(); |
| 103 bool IsClickable(); | 105 bool IsClickable(); |
| 104 bool IsButtonStateMixed(); | 106 bool IsButtonStateMixed(); |
| 105 | 107 |
| 106 // Bound methods. | 108 // Bound methods. |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 v8::Handle<v8::Object> GetOrCreate(const blink::WebAXObject&) override; | 182 v8::Handle<v8::Object> GetOrCreate(const blink::WebAXObject&) override; |
| 181 | 183 |
| 182 private: | 184 private: |
| 183 typedef v8::PersistentValueVector<v8::Object> ElementList; | 185 typedef v8::PersistentValueVector<v8::Object> ElementList; |
| 184 ElementList elements_; | 186 ElementList elements_; |
| 185 }; | 187 }; |
| 186 | 188 |
| 187 } // namespace content | 189 } // namespace content |
| 188 | 190 |
| 189 #endif // CONTENT_SHELL_RENDERER_TEST_RUNNER_WEB_AX_OBJECT_PROXY_H_ | 191 #endif // CONTENT_SHELL_RENDERER_TEST_RUNNER_WEB_AX_OBJECT_PROXY_H_ |
| OLD | NEW |