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

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

Issue 760423002: Removing unused function isVertical(). (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
« 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 BLINK_EXPORT bool isLinked() const; 102 BLINK_EXPORT bool isLinked() const;
103 BLINK_EXPORT bool isLoaded() const; 103 BLINK_EXPORT bool isLoaded() const;
104 BLINK_EXPORT bool isMultiSelectable() const; 104 BLINK_EXPORT bool isMultiSelectable() const;
105 BLINK_EXPORT bool isOffScreen() const; 105 BLINK_EXPORT bool isOffScreen() const;
106 BLINK_EXPORT bool isPasswordField() const; 106 BLINK_EXPORT bool isPasswordField() const;
107 BLINK_EXPORT bool isPressed() const; 107 BLINK_EXPORT bool isPressed() const;
108 BLINK_EXPORT bool isReadOnly() const; 108 BLINK_EXPORT bool isReadOnly() const;
109 BLINK_EXPORT bool isRequired() const; 109 BLINK_EXPORT bool isRequired() const;
110 BLINK_EXPORT bool isSelected() const; 110 BLINK_EXPORT bool isSelected() const;
111 BLINK_EXPORT bool isSelectedOptionActive() const; 111 BLINK_EXPORT bool isSelectedOptionActive() const;
112 BLINK_EXPORT bool isVertical() const;
113 BLINK_EXPORT bool isVisible() const; 112 BLINK_EXPORT bool isVisible() const;
114 BLINK_EXPORT bool isVisited() const; 113 BLINK_EXPORT bool isVisited() const;
115 114
116 BLINK_EXPORT WebString accessKey() const; 115 BLINK_EXPORT WebString accessKey() const;
117 BLINK_EXPORT WebAXObject ariaActiveDescendant() const; 116 BLINK_EXPORT WebAXObject ariaActiveDescendant() const;
118 BLINK_EXPORT bool ariaControls(WebVector<WebAXObject>& controlsElements) con st; 117 BLINK_EXPORT bool ariaControls(WebVector<WebAXObject>& controlsElements) con st;
119 BLINK_EXPORT bool ariaDescribedby(WebVector<WebAXObject>& describedbyElement s) const; 118 BLINK_EXPORT bool ariaDescribedby(WebVector<WebAXObject>& describedbyElement s) const;
120 BLINK_EXPORT bool ariaFlowTo(WebVector<WebAXObject>& flowToElements) const; 119 BLINK_EXPORT bool ariaFlowTo(WebVector<WebAXObject>& flowToElements) const;
121 BLINK_EXPORT bool ariaHasPopup() const; 120 BLINK_EXPORT bool ariaHasPopup() const;
122 BLINK_EXPORT bool ariaLabelledby(WebVector<WebAXObject>& labelledbyElements) const; 121 BLINK_EXPORT bool ariaLabelledby(WebVector<WebAXObject>& labelledbyElements) const;
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 operator WTF::PassRefPtr<AXObject>() const; 225 operator WTF::PassRefPtr<AXObject>() const;
227 #endif 226 #endif
228 227
229 private: 228 private:
230 WebPrivatePtr<AXObject> m_private; 229 WebPrivatePtr<AXObject> m_private;
231 }; 230 };
232 231
233 } // namespace blink 232 } // namespace blink
234 233
235 #endif 234 #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