| OLD | NEW |
| 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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 // For a table column | 205 // For a table column |
| 206 BLINK_EXPORT unsigned columnIndex() const; | 206 BLINK_EXPORT unsigned columnIndex() const; |
| 207 BLINK_EXPORT WebAXObject columnHeader() const; | 207 BLINK_EXPORT WebAXObject columnHeader() const; |
| 208 | 208 |
| 209 // For a table cell | 209 // For a table cell |
| 210 BLINK_EXPORT unsigned cellColumnIndex() const; | 210 BLINK_EXPORT unsigned cellColumnIndex() const; |
| 211 BLINK_EXPORT unsigned cellColumnSpan() const; | 211 BLINK_EXPORT unsigned cellColumnSpan() const; |
| 212 BLINK_EXPORT unsigned cellRowIndex() const; | 212 BLINK_EXPORT unsigned cellRowIndex() const; |
| 213 BLINK_EXPORT unsigned cellRowSpan() const; | 213 BLINK_EXPORT unsigned cellRowSpan() const; |
| 214 BLINK_EXPORT WebAXSortDirection sortDirection() const; | 214 BLINK_EXPORT WebAXSortDirection sortDirection() const; |
| 215 BLINK_EXPORT void rowHeadersForCell(WebVector<WebAXObject>&) const; |
| 216 BLINK_EXPORT void columnHeadersForCell(WebVector<WebAXObject>&) const; |
| 215 | 217 |
| 216 // Load inline text boxes for just this subtree, even if | 218 // Load inline text boxes for just this subtree, even if |
| 217 // settings->inlineTextBoxAccessibilityEnabled() is false. | 219 // settings->inlineTextBoxAccessibilityEnabled() is false. |
| 218 BLINK_EXPORT void loadInlineTextBoxes() const; | 220 BLINK_EXPORT void loadInlineTextBoxes() const; |
| 219 | 221 |
| 220 // For an inline text box. | 222 // For an inline text box. |
| 221 BLINK_EXPORT WebAXTextDirection textDirection() const; | 223 BLINK_EXPORT WebAXTextDirection textDirection() const; |
| 222 BLINK_EXPORT void characterOffsets(WebVector<int>&) const; | 224 BLINK_EXPORT void characterOffsets(WebVector<int>&) const; |
| 223 BLINK_EXPORT void wordBoundaries(WebVector<int>& starts, WebVector<int>& end
s) const; | 225 BLINK_EXPORT void wordBoundaries(WebVector<int>& starts, WebVector<int>& end
s) const; |
| 224 | 226 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 235 operator WTF::PassRefPtr<AXObject>() const; | 237 operator WTF::PassRefPtr<AXObject>() const; |
| 236 #endif | 238 #endif |
| 237 | 239 |
| 238 private: | 240 private: |
| 239 WebPrivatePtr<AXObject> m_private; | 241 WebPrivatePtr<AXObject> m_private; |
| 240 }; | 242 }; |
| 241 | 243 |
| 242 } // namespace blink | 244 } // namespace blink |
| 243 | 245 |
| 244 #endif | 246 #endif |
| OLD | NEW |