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

Side by Side Diff: Tools/DumpRenderTree/chromium/TestRunner/AccessibilityUIElementChromium.h

Issue 10984006: Merge 129036 - AX: A few control types are returning the wrong answer for isReadOnly (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1271/
Patch Set: Created 8 years, 2 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 void isSelectableGetterCallback(CppVariant*); 83 void isSelectableGetterCallback(CppVariant*);
84 void isMultiSelectableGetterCallback(CppVariant*); 84 void isMultiSelectableGetterCallback(CppVariant*);
85 void isSelectedOptionActiveGetterCallback(CppVariant*); 85 void isSelectedOptionActiveGetterCallback(CppVariant*);
86 void isExpandedGetterCallback(CppVariant*); 86 void isExpandedGetterCallback(CppVariant*);
87 void isCheckedGetterCallback(CppVariant*); 87 void isCheckedGetterCallback(CppVariant*);
88 void isVisibleGetterCallback(CppVariant*); 88 void isVisibleGetterCallback(CppVariant*);
89 void isOffScreenGetterCallback(CppVariant*); 89 void isOffScreenGetterCallback(CppVariant*);
90 void isCollapsedGetterCallback(CppVariant*); 90 void isCollapsedGetterCallback(CppVariant*);
91 void hasPopupGetterCallback(CppVariant*); 91 void hasPopupGetterCallback(CppVariant*);
92 void isValidGetterCallback(CppVariant*); 92 void isValidGetterCallback(CppVariant*);
93 void isReadOnlyGetterCallback(CppVariant*);
93 void orientationGetterCallback(CppVariant*); 94 void orientationGetterCallback(CppVariant*);
94 95
95 // Bound methods. 96 // Bound methods.
96 void allAttributesCallback(const CppArgumentList&, CppVariant*); 97 void allAttributesCallback(const CppArgumentList&, CppVariant*);
97 void attributesOfLinkedUIElementsCallback(const CppArgumentList&, CppVariant *); 98 void attributesOfLinkedUIElementsCallback(const CppArgumentList&, CppVariant *);
98 void attributesOfDocumentLinksCallback(const CppArgumentList&, CppVariant*); 99 void attributesOfDocumentLinksCallback(const CppArgumentList&, CppVariant*);
99 void attributesOfChildrenCallback(const CppArgumentList&, CppVariant*); 100 void attributesOfChildrenCallback(const CppArgumentList&, CppVariant*);
100 void parametrizedAttributeNamesCallback(const CppArgumentList&, CppVariant*) ; 101 void parametrizedAttributeNamesCallback(const CppArgumentList&, CppVariant*) ;
101 void lineForIndexCallback(const CppArgumentList&, CppVariant*); 102 void lineForIndexCallback(const CppArgumentList&, CppVariant*);
102 void boundsForRangeCallback(const CppArgumentList&, CppVariant*); 103 void boundsForRangeCallback(const CppArgumentList&, CppVariant*);
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 void clear(); 160 void clear();
160 virtual AccessibilityUIElement* getOrCreate(const WebKit::WebAccessibilityOb ject&); 161 virtual AccessibilityUIElement* getOrCreate(const WebKit::WebAccessibilityOb ject&);
161 AccessibilityUIElement* createRoot(const WebKit::WebAccessibilityObject&); 162 AccessibilityUIElement* createRoot(const WebKit::WebAccessibilityObject&);
162 163
163 private: 164 private:
164 typedef Vector<AccessibilityUIElement*> ElementList; 165 typedef Vector<AccessibilityUIElement*> ElementList;
165 ElementList m_elements; 166 ElementList m_elements;
166 }; 167 };
167 168
168 #endif // AccessibilityUIElementChromium_h 169 #endif // AccessibilityUIElementChromium_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698