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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 Loading... |
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_ |
OLD | NEW |