| 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 WebAXInvalidState invalidState() const; | 128 BLINK_EXPORT WebAXInvalidState invalidState() const; |
| 129 // Only used when invalidState() returns WebAXInvalidStateOther. | 129 // Only used when invalidState() returns WebAXInvalidStateOther. |
| 130 BLINK_EXPORT WebString ariaInvalidValue() const; | 130 BLINK_EXPORT WebString ariaInvalidValue() const; |
| 131 BLINK_EXPORT double estimatedLoadingProgress() const; | 131 BLINK_EXPORT double estimatedLoadingProgress() const; |
| 132 BLINK_EXPORT WebString helpText() const; | 132 BLINK_EXPORT WebString helpText() const; |
| 133 BLINK_EXPORT int headingLevel() const; | 133 BLINK_EXPORT int headingLevel() const; |
| 134 BLINK_EXPORT int hierarchicalLevel() const; | 134 BLINK_EXPORT int hierarchicalLevel() const; |
| 135 BLINK_EXPORT WebAXObject hitTest(const WebPoint&) const; | 135 BLINK_EXPORT WebAXObject hitTest(const WebPoint&) const; |
| 136 BLINK_EXPORT WebString keyboardShortcut() const; | 136 BLINK_EXPORT WebString keyboardShortcut() const; |
| 137 BLINK_EXPORT WebString placeholder() const; |
| 137 BLINK_EXPORT WebAXRole role() const; | 138 BLINK_EXPORT WebAXRole role() const; |
| 138 BLINK_EXPORT unsigned selectionEnd() const; | 139 BLINK_EXPORT unsigned selectionEnd() const; |
| 139 BLINK_EXPORT unsigned selectionEndLineNumber() const; | 140 BLINK_EXPORT unsigned selectionEndLineNumber() const; |
| 140 BLINK_EXPORT unsigned selectionStart() const; | 141 BLINK_EXPORT unsigned selectionStart() const; |
| 141 BLINK_EXPORT unsigned selectionStartLineNumber() const; | 142 BLINK_EXPORT unsigned selectionStartLineNumber() const; |
| 142 BLINK_EXPORT WebString stringValue() const; | 143 BLINK_EXPORT WebString stringValue() const; |
| 143 BLINK_EXPORT WebString title() const; | 144 BLINK_EXPORT WebString title() const; |
| 144 BLINK_EXPORT WebString language() const; | 145 BLINK_EXPORT WebString language() const; |
| 145 BLINK_EXPORT WebAXObject titleUIElement() const; | 146 BLINK_EXPORT WebAXObject titleUIElement() const; |
| 146 BLINK_EXPORT WebURL url() const; | 147 BLINK_EXPORT WebURL url() const; |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 operator WTF::PassRefPtr<AXObject>() const; | 231 operator WTF::PassRefPtr<AXObject>() const; |
| 231 #endif | 232 #endif |
| 232 | 233 |
| 233 private: | 234 private: |
| 234 WebPrivatePtr<AXObject> m_private; | 235 WebPrivatePtr<AXObject> m_private; |
| 235 }; | 236 }; |
| 236 | 237 |
| 237 } // namespace blink | 238 } // namespace blink |
| 238 | 239 |
| 239 #endif | 240 #endif |
| OLD | NEW |