| 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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 133     // Deprecated. | 133     // Deprecated. | 
| 134     BLINK_EXPORT void colorValue(int& r, int& g, int& b) const; | 134     BLINK_EXPORT void colorValue(int& r, int& g, int& b) const; | 
| 135     BLINK_EXPORT unsigned colorValue() const; | 135     BLINK_EXPORT unsigned colorValue() const; | 
| 136     BLINK_EXPORT WebAXObject ariaActiveDescendant() const; | 136     BLINK_EXPORT WebAXObject ariaActiveDescendant() const; | 
| 137     BLINK_EXPORT WebString ariaAutoComplete() const; | 137     BLINK_EXPORT WebString ariaAutoComplete() const; | 
| 138     BLINK_EXPORT bool ariaControls(WebVector<WebAXObject>& controlsElements) con
     st; | 138     BLINK_EXPORT bool ariaControls(WebVector<WebAXObject>& controlsElements) con
     st; | 
| 139     BLINK_EXPORT WebString ariaDropEffect() const; | 139     BLINK_EXPORT WebString ariaDropEffect() const; | 
| 140     BLINK_EXPORT bool ariaFlowTo(WebVector<WebAXObject>& flowToElements) const; | 140     BLINK_EXPORT bool ariaFlowTo(WebVector<WebAXObject>& flowToElements) const; | 
| 141     BLINK_EXPORT bool ariaHasPopup() const; | 141     BLINK_EXPORT bool ariaHasPopup() const; | 
| 142     BLINK_EXPORT bool isMultiline() const; | 142     BLINK_EXPORT bool isMultiline() const; | 
|  | 143     BLINK_EXPORT bool hasRichText() const; | 
| 143     BLINK_EXPORT bool ariaOwns(WebVector<WebAXObject>& ownsElements) const; | 144     BLINK_EXPORT bool ariaOwns(WebVector<WebAXObject>& ownsElements) const; | 
| 144     BLINK_EXPORT WebRect boundingBoxRect() const; | 145     BLINK_EXPORT WebRect boundingBoxRect() const; | 
| 145     BLINK_EXPORT float fontSize() const; | 146     BLINK_EXPORT float fontSize() const; | 
| 146     BLINK_EXPORT bool canvasHasFallbackContent() const; | 147     BLINK_EXPORT bool canvasHasFallbackContent() const; | 
| 147     BLINK_EXPORT WebPoint clickPoint() const; | 148     BLINK_EXPORT WebPoint clickPoint() const; | 
| 148     BLINK_EXPORT WebAXInvalidState invalidState() const; | 149     BLINK_EXPORT WebAXInvalidState invalidState() const; | 
| 149     // Only used when invalidState() returns WebAXInvalidStateOther. | 150     // Only used when invalidState() returns WebAXInvalidStateOther. | 
| 150     BLINK_EXPORT WebString ariaInvalidValue() const; | 151     BLINK_EXPORT WebString ariaInvalidValue() const; | 
| 151     BLINK_EXPORT double estimatedLoadingProgress() const; | 152     BLINK_EXPORT double estimatedLoadingProgress() const; | 
| 152     BLINK_EXPORT int headingLevel() const; | 153     BLINK_EXPORT int headingLevel() const; | 
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 304     operator WTF::PassRefPtr<AXObject>() const; | 305     operator WTF::PassRefPtr<AXObject>() const; | 
| 305 #endif | 306 #endif | 
| 306 | 307 | 
| 307 private: | 308 private: | 
| 308     WebPrivatePtr<AXObject> m_private; | 309     WebPrivatePtr<AXObject> m_private; | 
| 309 }; | 310 }; | 
| 310 | 311 | 
| 311 } // namespace blink | 312 } // namespace blink | 
| 312 | 313 | 
| 313 #endif | 314 #endif | 
| OLD | NEW | 
|---|