| 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 int Height(); | 66 int Height(); |
| 67 int IntValue(); | 67 int IntValue(); |
| 68 int MinValue(); | 68 int MinValue(); |
| 69 int MaxValue(); | 69 int MaxValue(); |
| 70 std::string ValueDescription(); | 70 std::string ValueDescription(); |
| 71 int ChildrenCount(); | 71 int ChildrenCount(); |
| 72 int SelectionStart(); | 72 int SelectionStart(); |
| 73 int SelectionEnd(); | 73 int SelectionEnd(); |
| 74 int SelectionStartLineNumber(); | 74 int SelectionStartLineNumber(); |
| 75 int SelectionEndLineNumber(); | 75 int SelectionEndLineNumber(); |
| 76 // TODO(nektar): Remove this function after updating tests. | |
| 77 int InsertionPointLineNumber(); | |
| 78 // TODO(nektar): Remove this function after updating tests. | |
| 79 std::string SelectedTextRange(); | |
| 80 bool IsEnabled(); | 76 bool IsEnabled(); |
| 81 bool IsRequired(); | 77 bool IsRequired(); |
| 82 bool IsFocused(); | 78 bool IsFocused(); |
| 83 bool IsFocusable(); | 79 bool IsFocusable(); |
| 84 bool IsSelected(); | 80 bool IsSelected(); |
| 85 bool IsSelectable(); | 81 bool IsSelectable(); |
| 86 bool IsMultiSelectable(); | 82 bool IsMultiSelectable(); |
| 87 bool IsSelectedOptionActive(); | 83 bool IsSelectedOptionActive(); |
| 88 bool IsExpanded(); | 84 bool IsExpanded(); |
| 89 bool IsChecked(); | 85 bool IsChecked(); |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 v8::Handle<v8::Object> CreateRoot(const blink::WebAXObject&); | 177 v8::Handle<v8::Object> CreateRoot(const blink::WebAXObject&); |
| 182 | 178 |
| 183 private: | 179 private: |
| 184 typedef v8::PersistentValueVector<v8::Object> ElementList; | 180 typedef v8::PersistentValueVector<v8::Object> ElementList; |
| 185 ElementList elements_; | 181 ElementList elements_; |
| 186 }; | 182 }; |
| 187 | 183 |
| 188 } // namespace content | 184 } // namespace content |
| 189 | 185 |
| 190 #endif // CONTENT_SHELL_RENDERER_TEST_RUNNER_WEB_AX_OBJECT_PROXY_H_ | 186 #endif // CONTENT_SHELL_RENDERER_TEST_RUNNER_WEB_AX_OBJECT_PROXY_H_ |
| OLD | NEW |