| 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 IsVisible(); | 87 bool IsVisible(); |
| 88 bool IsOffScreen(); | 88 bool IsOffScreen(); |
| 89 bool IsCollapsed(); | 89 bool IsCollapsed(); |
| 90 bool HasPopup(); | 90 bool HasPopup(); |
| 91 bool IsValid(); | 91 bool IsValid(); |
| 92 bool IsReadOnly(); | 92 bool IsReadOnly(); |
| 93 std::string Orientation(); | 93 std::string Orientation(); |
| 94 int ClickPointX(); | 94 int ClickPointX(); |
| 95 int ClickPointY(); | 95 int ClickPointY(); |
| 96 int32_t RowCount(); | 96 int32_t RowCount(); |
| 97 int32_t RowHeadersCount(); |
| 97 int32_t ColumnCount(); | 98 int32_t ColumnCount(); |
| 99 int32_t ColumnHeadersCount(); |
| 98 bool IsClickable(); | 100 bool IsClickable(); |
| 99 bool IsButtonStateMixed(); | 101 bool IsButtonStateMixed(); |
| 100 | 102 |
| 101 // Bound methods. | 103 // Bound methods. |
| 102 v8::Handle<v8::Object> AriaControlsElementAtIndex(unsigned index); | 104 v8::Handle<v8::Object> AriaControlsElementAtIndex(unsigned index); |
| 103 v8::Handle<v8::Object> AriaFlowToElementAtIndex(unsigned index); | 105 v8::Handle<v8::Object> AriaFlowToElementAtIndex(unsigned index); |
| 104 v8::Handle<v8::Object> AriaOwnsElementAtIndex(unsigned index); | 106 v8::Handle<v8::Object> AriaOwnsElementAtIndex(unsigned index); |
| 105 std::string AllAttributes(); | 107 std::string AllAttributes(); |
| 106 std::string AttributesOfChildren(); | 108 std::string AttributesOfChildren(); |
| 107 int LineForIndex(int index); | 109 int LineForIndex(int index); |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 v8::Handle<v8::Object> CreateRoot(const blink::WebAXObject&); | 167 v8::Handle<v8::Object> CreateRoot(const blink::WebAXObject&); |
| 166 | 168 |
| 167 private: | 169 private: |
| 168 typedef v8::PersistentValueVector<v8::Object> ElementList; | 170 typedef v8::PersistentValueVector<v8::Object> ElementList; |
| 169 ElementList elements_; | 171 ElementList elements_; |
| 170 }; | 172 }; |
| 171 | 173 |
| 172 } // namespace content | 174 } // namespace content |
| 173 | 175 |
| 174 #endif // CONTENT_SHELL_RENDERER_TEST_RUNNER_WEB_AX_OBJECT_PROXY_H_ | 176 #endif // CONTENT_SHELL_RENDERER_TEST_RUNNER_WEB_AX_OBJECT_PROXY_H_ |
| OLD | NEW |