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

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

Issue 813473004: Introducing new API placeHolder() to expose placeholder attribute on MAC (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.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
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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 BLINK_EXPORT WebRect boundingBoxRect() const; 124 BLINK_EXPORT WebRect boundingBoxRect() const;
125 BLINK_EXPORT bool canvasHasFallbackContent() const; 125 BLINK_EXPORT bool canvasHasFallbackContent() const;
126 BLINK_EXPORT WebPoint clickPoint() const; 126 BLINK_EXPORT WebPoint clickPoint() const;
127 BLINK_EXPORT void colorValue(int& r, int& g, int& b) const; 127 BLINK_EXPORT void colorValue(int& r, int& g, int& b) const;
128 BLINK_EXPORT double estimatedLoadingProgress() const; 128 BLINK_EXPORT double estimatedLoadingProgress() const;
129 BLINK_EXPORT WebString helpText() const; 129 BLINK_EXPORT WebString helpText() const;
130 BLINK_EXPORT int headingLevel() const; 130 BLINK_EXPORT int headingLevel() const;
131 BLINK_EXPORT int hierarchicalLevel() const; 131 BLINK_EXPORT int hierarchicalLevel() const;
132 BLINK_EXPORT WebAXObject hitTest(const WebPoint&) const; 132 BLINK_EXPORT WebAXObject hitTest(const WebPoint&) const;
133 BLINK_EXPORT WebString keyboardShortcut() const; 133 BLINK_EXPORT WebString keyboardShortcut() const;
134 BLINK_EXPORT WebString placeHolder() const;
134 BLINK_EXPORT WebAXRole role() const; 135 BLINK_EXPORT WebAXRole role() const;
135 BLINK_EXPORT unsigned selectionEnd() const; 136 BLINK_EXPORT unsigned selectionEnd() const;
136 BLINK_EXPORT unsigned selectionEndLineNumber() const; 137 BLINK_EXPORT unsigned selectionEndLineNumber() const;
137 BLINK_EXPORT unsigned selectionStart() const; 138 BLINK_EXPORT unsigned selectionStart() const;
138 BLINK_EXPORT unsigned selectionStartLineNumber() const; 139 BLINK_EXPORT unsigned selectionStartLineNumber() const;
139 BLINK_EXPORT WebString stringValue() const; 140 BLINK_EXPORT WebString stringValue() const;
140 BLINK_EXPORT WebString title() const; 141 BLINK_EXPORT WebString title() const;
141 BLINK_EXPORT WebString language() const; 142 BLINK_EXPORT WebString language() const;
142 BLINK_EXPORT WebAXObject titleUIElement() const; 143 BLINK_EXPORT WebAXObject titleUIElement() const;
143 BLINK_EXPORT WebURL url() const; 144 BLINK_EXPORT WebURL url() const;
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 operator WTF::PassRefPtr<AXObject>() const; 228 operator WTF::PassRefPtr<AXObject>() const;
228 #endif 229 #endif
229 230
230 private: 231 private:
231 WebPrivatePtr<AXObject> m_private; 232 WebPrivatePtr<AXObject> m_private;
232 }; 233 };
233 234
234 } // namespace blink 235 } // namespace blink
235 236
236 #endif 237 #endif
OLDNEW
« Source/modules/accessibility/AXNodeObject.cpp ('K') | « Source/web/WebAXObject.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698