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

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

Issue 773133009: Introduce new API Language() to test lang attribute that is properly reported. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 55
56 private: 56 private:
57 friend class WebAXObjectProxyBindings; 57 friend class WebAXObjectProxyBindings;
58 58
59 // Bound properties. 59 // Bound properties.
60 std::string Role(); 60 std::string Role();
61 std::string Title(); 61 std::string Title();
62 std::string Description(); 62 std::string Description();
63 std::string HelpText(); 63 std::string HelpText();
64 std::string StringValue(); 64 std::string StringValue();
65 std::string Language();
65 int X(); 66 int X();
66 int Y(); 67 int Y();
67 int Width(); 68 int Width();
68 int Height(); 69 int Height();
69 int IntValue(); 70 int IntValue();
70 int MinValue(); 71 int MinValue();
71 int MaxValue(); 72 int MaxValue();
72 std::string ValueDescription(); 73 std::string ValueDescription();
73 int ChildrenCount(); 74 int ChildrenCount();
74 int InsertionPointLineNumber(); 75 int InsertionPointLineNumber();
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 v8::Handle<v8::Object> CreateRoot(const blink::WebAXObject&); 159 v8::Handle<v8::Object> CreateRoot(const blink::WebAXObject&);
159 160
160 private: 161 private:
161 typedef v8::PersistentValueVector<v8::Object> ElementList; 162 typedef v8::PersistentValueVector<v8::Object> ElementList;
162 ElementList elements_; 163 ElementList elements_;
163 }; 164 };
164 165
165 } // namespace content 166 } // namespace content
166 167
167 #endif // CONTENT_SHELL_RENDERER_TEST_RUNNER_WEB_AX_OBJECT_PROXY_H_ 168 #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