| 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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 | 130 |
| 131 BLINK_EXPORT WebString accessKey() const; | 131 BLINK_EXPORT WebString accessKey() const; |
| 132 BLINK_EXPORT unsigned backgroundColor() const; | 132 BLINK_EXPORT unsigned backgroundColor() const; |
| 133 BLINK_EXPORT unsigned color() const; | 133 BLINK_EXPORT unsigned color() const; |
| 134 // Deprecated. | 134 // Deprecated. |
| 135 BLINK_EXPORT void colorValue(int& r, int& g, int& b) const; | 135 BLINK_EXPORT void colorValue(int& r, int& g, int& b) const; |
| 136 BLINK_EXPORT unsigned colorValue() const; | 136 BLINK_EXPORT unsigned colorValue() const; |
| 137 BLINK_EXPORT WebAXObject ariaActiveDescendant() const; | 137 BLINK_EXPORT WebAXObject ariaActiveDescendant() const; |
| 138 BLINK_EXPORT WebString ariaAutoComplete() const; | 138 BLINK_EXPORT WebString ariaAutoComplete() const; |
| 139 BLINK_EXPORT bool ariaControls(WebVector<WebAXObject>& controlsElements) con
st; | 139 BLINK_EXPORT bool ariaControls(WebVector<WebAXObject>& controlsElements) con
st; |
| 140 BLINK_EXPORT WebAXAriaCurrentState ariaCurrentState() const; |
| 140 BLINK_EXPORT bool ariaFlowTo(WebVector<WebAXObject>& flowToElements) const; | 141 BLINK_EXPORT bool ariaFlowTo(WebVector<WebAXObject>& flowToElements) const; |
| 141 BLINK_EXPORT bool ariaHasPopup() const; | 142 BLINK_EXPORT bool ariaHasPopup() const; |
| 142 BLINK_EXPORT bool isEditable() const; | 143 BLINK_EXPORT bool isEditable() const; |
| 143 BLINK_EXPORT bool isMultiline() const; | 144 BLINK_EXPORT bool isMultiline() const; |
| 144 BLINK_EXPORT bool isRichlyEditable() const; | 145 BLINK_EXPORT bool isRichlyEditable() const; |
| 145 BLINK_EXPORT bool ariaOwns(WebVector<WebAXObject>& ownsElements) const; | 146 BLINK_EXPORT bool ariaOwns(WebVector<WebAXObject>& ownsElements) const; |
| 146 BLINK_EXPORT WebRect boundingBoxRect() const; | 147 BLINK_EXPORT WebRect boundingBoxRect() const; |
| 147 BLINK_EXPORT WebString fontFamily() const; | 148 BLINK_EXPORT WebString fontFamily() const; |
| 148 BLINK_EXPORT float fontSize() const; | 149 BLINK_EXPORT float fontSize() const; |
| 149 BLINK_EXPORT bool canvasHasFallbackContent() const; | 150 BLINK_EXPORT bool canvasHasFallbackContent() const; |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 operator AXObject*() const; | 301 operator AXObject*() const; |
| 301 #endif | 302 #endif |
| 302 | 303 |
| 303 private: | 304 private: |
| 304 WebPrivatePtr<AXObject> m_private; | 305 WebPrivatePtr<AXObject> m_private; |
| 305 }; | 306 }; |
| 306 | 307 |
| 307 } // namespace blink | 308 } // namespace blink |
| 308 | 309 |
| 309 #endif | 310 #endif |
| OLD | NEW |