| 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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 BLINK_EXPORT bool canSetFocusAttribute() const; | 254 BLINK_EXPORT bool canSetFocusAttribute() const; |
| 255 BLINK_EXPORT bool canSetSelectedAttribute() const; | 255 BLINK_EXPORT bool canSetSelectedAttribute() const; |
| 256 BLINK_EXPORT bool canSetValueAttribute() const; | 256 BLINK_EXPORT bool canSetValueAttribute() const; |
| 257 BLINK_EXPORT bool performDefaultAction() const; | 257 BLINK_EXPORT bool performDefaultAction() const; |
| 258 BLINK_EXPORT bool press() const; | 258 BLINK_EXPORT bool press() const; |
| 259 BLINK_EXPORT bool increment() const; | 259 BLINK_EXPORT bool increment() const; |
| 260 BLINK_EXPORT bool decrement() const; | 260 BLINK_EXPORT bool decrement() const; |
| 261 BLINK_EXPORT void setFocused(bool) const; | 261 BLINK_EXPORT void setFocused(bool) const; |
| 262 BLINK_EXPORT void setSelectedTextRange(int selectionStart, | 262 BLINK_EXPORT void setSelectedTextRange(int selectionStart, |
| 263 int selectionEnd) const; | 263 int selectionEnd) const; |
| 264 BLINK_EXPORT void setSequentialFocusNavigationStartingPoint() const; |
| 264 BLINK_EXPORT void setValue(WebString) const; | 265 BLINK_EXPORT void setValue(WebString) const; |
| 265 BLINK_EXPORT void showContextMenu() const; | 266 BLINK_EXPORT void showContextMenu() const; |
| 266 | 267 |
| 267 // For a table | 268 // For a table |
| 268 BLINK_EXPORT unsigned columnCount() const; | 269 BLINK_EXPORT unsigned columnCount() const; |
| 269 BLINK_EXPORT unsigned rowCount() const; | 270 BLINK_EXPORT unsigned rowCount() const; |
| 270 BLINK_EXPORT WebAXObject cellForColumnAndRow(unsigned column, | 271 BLINK_EXPORT WebAXObject cellForColumnAndRow(unsigned column, |
| 271 unsigned row) const; | 272 unsigned row) const; |
| 272 BLINK_EXPORT WebAXObject headerContainerObject() const; | 273 BLINK_EXPORT WebAXObject headerContainerObject() const; |
| 273 BLINK_EXPORT WebAXObject rowAtIndex(unsigned rowIndex) const; | 274 BLINK_EXPORT WebAXObject rowAtIndex(unsigned rowIndex) const; |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 339 operator AXObject*() const; | 340 operator AXObject*() const; |
| 340 #endif | 341 #endif |
| 341 | 342 |
| 342 private: | 343 private: |
| 343 WebPrivatePtr<AXObject> m_private; | 344 WebPrivatePtr<AXObject> m_private; |
| 344 }; | 345 }; |
| 345 | 346 |
| 346 } // namespace blink | 347 } // namespace blink |
| 347 | 348 |
| 348 #endif | 349 #endif |
| OLD | NEW |