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

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

Issue 2886963004: Fixes for tree item level, setsize and posinset (Closed)
Patch Set: Fix tests Created 3 years, 7 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/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_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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 float FontSize(); 122 float FontSize();
123 std::string Autocomplete(); 123 std::string Autocomplete();
124 std::string Current(); 124 std::string Current();
125 std::string Invalid(); 125 std::string Invalid();
126 std::string KeyShortcuts(); 126 std::string KeyShortcuts();
127 std::string Live(); 127 std::string Live();
128 std::string Orientation(); 128 std::string Orientation();
129 std::string Relevant(); 129 std::string Relevant();
130 std::string RoleDescription(); 130 std::string RoleDescription();
131 std::string Sort(); 131 std::string Sort();
132 int HierarchicalLevel();
132 int PosInSet(); 133 int PosInSet();
133 int SetSize(); 134 int SetSize();
134 int ClickPointX(); 135 int ClickPointX();
135 int ClickPointY(); 136 int ClickPointY();
136 int32_t RowCount(); 137 int32_t RowCount();
137 int32_t RowHeadersCount(); 138 int32_t RowHeadersCount();
138 int32_t ColumnCount(); 139 int32_t ColumnCount();
139 int32_t ColumnHeadersCount(); 140 int32_t ColumnHeadersCount();
140 bool IsClickable(); 141 bool IsClickable();
141 bool IsButtonStateMixed(); 142 bool IsButtonStateMixed();
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 v8::Local<v8::Object> GetOrCreate(const blink::WebAXObject&) override; 238 v8::Local<v8::Object> GetOrCreate(const blink::WebAXObject&) override;
238 239
239 private: 240 private:
240 typedef v8::PersistentValueVector<v8::Object> ElementList; 241 typedef v8::PersistentValueVector<v8::Object> ElementList;
241 ElementList elements_; 242 ElementList elements_;
242 }; 243 };
243 244
244 } // namespace test_runner 245 } // namespace test_runner
245 246
246 #endif // CONTENT_SHELL_TEST_RUNNER_WEB_AX_OBJECT_PROXY_H_ 247 #endif // CONTENT_SHELL_TEST_RUNNER_WEB_AX_OBJECT_PROXY_H_
OLDNEW
« no previous file with comments | « no previous file | content/shell/test_runner/web_ax_object_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698