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

Side by Side Diff: webkit/tools/test_shell/accessibility_ui_element.h

Issue 503050: Added a new method isChecked to AccessibilityUIElement... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 11 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | webkit/tools/test_shell/accessibility_ui_element.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2009 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 WEBKIT_TOOLS_TEST_SHELL_ACCESSIBILITY_UI_ELEMENT_H_ 5 #ifndef WEBKIT_TOOLS_TEST_SHELL_ACCESSIBILITY_UI_ELEMENT_H_
6 #define WEBKIT_TOOLS_TEST_SHELL_ACCESSIBILITY_UI_ELEMENT_H_ 6 #define WEBKIT_TOOLS_TEST_SHELL_ACCESSIBILITY_UI_ELEMENT_H_
7 7
8 #include "webkit/glue/cpp_bound_class.h" 8 #include "webkit/glue/cpp_bound_class.h"
9 #include "third_party/WebKit/WebKit/chromium/public/WebAccessibilityObject.h" 9 #include "third_party/WebKit/WebKit/chromium/public/WebAccessibilityObject.h"
10 10
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 const CppArgumentList& args, CppVariant* result); 74 const CppArgumentList& args, CppVariant* result);
75 void ParentElementCallback(const CppArgumentList& args, CppVariant* result); 75 void ParentElementCallback(const CppArgumentList& args, CppVariant* result);
76 void IncrementCallback(const CppArgumentList& args, CppVariant* result); 76 void IncrementCallback(const CppArgumentList& args, CppVariant* result);
77 void DecrementCallback(const CppArgumentList& args, CppVariant* result); 77 void DecrementCallback(const CppArgumentList& args, CppVariant* result);
78 void FallbackCallback(const CppArgumentList& args, CppVariant* result); 78 void FallbackCallback(const CppArgumentList& args, CppVariant* result);
79 79
80 void ChildrenCountGetterCallback(CppVariant* result); 80 void ChildrenCountGetterCallback(CppVariant* result);
81 void DescriptionGetterCallback(CppVariant* result); 81 void DescriptionGetterCallback(CppVariant* result);
82 void IsEnabledGetterCallback(CppVariant* result); 82 void IsEnabledGetterCallback(CppVariant* result);
83 void IsSelectedGetterCallback(CppVariant* result); 83 void IsSelectedGetterCallback(CppVariant* result);
84 void IsCheckedGetterCallback(CppVariant* result);
84 void RoleGetterCallback(CppVariant* result); 85 void RoleGetterCallback(CppVariant* result);
85 void TitleGetterCallback(CppVariant* result); 86 void TitleGetterCallback(CppVariant* result);
86 87
87 CppVariant subrole_; 88 CppVariant subrole_;
88 CppVariant language_; 89 CppVariant language_;
89 CppVariant x_; 90 CppVariant x_;
90 CppVariant y_; 91 CppVariant y_;
91 CppVariant width_; 92 CppVariant width_;
92 CppVariant height_; 93 CppVariant height_;
93 CppVariant click_point_x_; 94 CppVariant click_point_x_;
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 const WebKit::WebAccessibilityObject& object); 131 const WebKit::WebAccessibilityObject& object);
131 AccessibilityUIElement* CreateRoot( 132 AccessibilityUIElement* CreateRoot(
132 const WebKit::WebAccessibilityObject& object); 133 const WebKit::WebAccessibilityObject& object);
133 134
134 private: 135 private:
135 typedef std::vector<AccessibilityUIElement*> ElementList; 136 typedef std::vector<AccessibilityUIElement*> ElementList;
136 ElementList elements_; 137 ElementList elements_;
137 }; 138 };
138 139
139 #endif // WEBKIT_TOOLS_TEST_SHELL_ACCESSIBILITY_UI_ELEMENT_H_ 140 #endif // WEBKIT_TOOLS_TEST_SHELL_ACCESSIBILITY_UI_ELEMENT_H_
OLDNEW
« no previous file with comments | « no previous file | webkit/tools/test_shell/accessibility_ui_element.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698