Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(221)

Side by Side Diff: content/shell/renderer/test_runner/web_ax_object_proxy.h

Issue 1089503002: Removed depracated methods selectedTextRange and insertionPointLineNumber from accessibility API in… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | content/shell/renderer/test_runner/web_ax_object_proxy.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « no previous file | content/shell/renderer/test_runner/web_ax_object_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698