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

Side by Side Diff: public/web/WebAXObject.h

Issue 596393004: Add AX attribute for input type (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Using isTextField() Created 6 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
« no previous file with comments | « Source/web/WebAXObject.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 BLINK_EXPORT float valueForRange() const; 151 BLINK_EXPORT float valueForRange() const;
152 BLINK_EXPORT float maxValueForRange() const; 152 BLINK_EXPORT float maxValueForRange() const;
153 BLINK_EXPORT float minValueForRange() const; 153 BLINK_EXPORT float minValueForRange() const;
154 154
155 BLINK_EXPORT WebNode node() const; 155 BLINK_EXPORT WebNode node() const;
156 BLINK_EXPORT WebDocument document() const; 156 BLINK_EXPORT WebDocument document() const;
157 BLINK_EXPORT bool hasComputedStyle() const; 157 BLINK_EXPORT bool hasComputedStyle() const;
158 BLINK_EXPORT WebString computedStyleDisplay() const; 158 BLINK_EXPORT WebString computedStyleDisplay() const;
159 BLINK_EXPORT bool accessibilityIsIgnored() const; 159 BLINK_EXPORT bool accessibilityIsIgnored() const;
160 BLINK_EXPORT bool lineBreaks(WebVector<int>&) const; 160 BLINK_EXPORT bool lineBreaks(WebVector<int>&) const;
161 BLINK_EXPORT WebString textInputType() const;
161 162
162 // Actions 163 // Actions
163 BLINK_EXPORT WebString actionVerb() const; // The verb corresponding to perf ormDefaultAction. 164 BLINK_EXPORT WebString actionVerb() const; // The verb corresponding to perf ormDefaultAction.
164 BLINK_EXPORT bool canDecrement() const; 165 BLINK_EXPORT bool canDecrement() const;
165 BLINK_EXPORT bool canIncrement() const; 166 BLINK_EXPORT bool canIncrement() const;
166 BLINK_EXPORT bool canPress() const; 167 BLINK_EXPORT bool canPress() const;
167 BLINK_EXPORT bool canSetFocusAttribute() const; 168 BLINK_EXPORT bool canSetFocusAttribute() const;
168 BLINK_EXPORT bool canSetSelectedAttribute() const; 169 BLINK_EXPORT bool canSetSelectedAttribute() const;
169 BLINK_EXPORT bool canSetValueAttribute() const; 170 BLINK_EXPORT bool canSetValueAttribute() const;
170 BLINK_EXPORT bool performDefaultAction() const; 171 BLINK_EXPORT bool performDefaultAction() const;
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 operator WTF::PassRefPtr<AXObject>() const; 215 operator WTF::PassRefPtr<AXObject>() const;
215 #endif 216 #endif
216 217
217 private: 218 private:
218 WebPrivatePtr<AXObject> m_private; 219 WebPrivatePtr<AXObject> m_private;
219 }; 220 };
220 221
221 } // namespace blink 222 } // namespace blink
222 223
223 #endif 224 #endif
OLDNEW
« no previous file with comments | « Source/web/WebAXObject.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698