| 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  120   BLINK_EXPORT WebAXObject ParentObject() const; |  120   BLINK_EXPORT WebAXObject ParentObject() const; | 
|  121  |  121  | 
|  122   // Retrieve accessibility attributes that apply to only a small |  122   // Retrieve accessibility attributes that apply to only a small | 
|  123   // fraction of WebAXObjects by passing an implementation of |  123   // fraction of WebAXObjects by passing an implementation of | 
|  124   // WebAXSparseAttributeClient, which will be called with only the attributes |  124   // WebAXSparseAttributeClient, which will be called with only the attributes | 
|  125   // that apply to this object. |  125   // that apply to this object. | 
|  126   BLINK_EXPORT void GetSparseAXAttributes(WebAXSparseAttributeClient&) const; |  126   BLINK_EXPORT void GetSparseAXAttributes(WebAXSparseAttributeClient&) const; | 
|  127  |  127  | 
|  128   BLINK_EXPORT bool IsAnchor() const; |  128   BLINK_EXPORT bool IsAnchor() const; | 
|  129   BLINK_EXPORT bool IsAriaReadOnly() const; |  129   BLINK_EXPORT bool IsAriaReadOnly() const; | 
|  130   BLINK_EXPORT WebAXCheckedState CheckedState() const; |  130   BLINK_EXPORT WebAXButtonState CheckedState() const; | 
|  131   BLINK_EXPORT bool IsCheckable() const; |  131   BLINK_EXPORT bool IsCheckable() const; | 
|  132   BLINK_EXPORT bool IsClickable() const; |  132   BLINK_EXPORT bool IsClickable() const; | 
|  133   BLINK_EXPORT bool IsCollapsed() const; |  133   BLINK_EXPORT bool IsCollapsed() const; | 
|  134   BLINK_EXPORT bool IsControl() const; |  134   BLINK_EXPORT bool IsControl() const; | 
|  135   BLINK_EXPORT bool IsEnabled() const; |  135   BLINK_EXPORT bool IsEnabled() const; | 
|  136   BLINK_EXPORT WebAXExpanded IsExpanded() const; |  136   BLINK_EXPORT WebAXExpanded IsExpanded() const; | 
|  137   BLINK_EXPORT bool IsFocused() const; |  137   BLINK_EXPORT bool IsFocused() const; | 
|  138   BLINK_EXPORT bool IsHovered() const; |  138   BLINK_EXPORT bool IsHovered() const; | 
|  139   BLINK_EXPORT bool IsLinked() const; |  139   BLINK_EXPORT bool IsLinked() const; | 
|  140   BLINK_EXPORT bool IsLoaded() const; |  140   BLINK_EXPORT bool IsLoaded() const; | 
|  141   BLINK_EXPORT bool IsModal() const; |  141   BLINK_EXPORT bool IsModal() const; | 
|  142   BLINK_EXPORT bool IsMultiSelectable() const; |  142   BLINK_EXPORT bool IsMultiSelectable() const; | 
|  143   BLINK_EXPORT bool IsOffScreen() const; |  143   BLINK_EXPORT bool IsOffScreen() const; | 
|  144   BLINK_EXPORT bool IsPasswordField() const; |  144   BLINK_EXPORT bool IsPasswordField() const; | 
|  145   BLINK_EXPORT bool IsPressed() const; |  145   BLINK_EXPORT WebAXButtonState PressedState() const; | 
|  146   BLINK_EXPORT bool IsReadOnly() const; |  146   BLINK_EXPORT bool IsReadOnly() const; | 
|  147   BLINK_EXPORT bool IsRequired() const; |  147   BLINK_EXPORT bool IsRequired() const; | 
|  148   BLINK_EXPORT bool IsSelected() const; |  148   BLINK_EXPORT bool IsSelected() const; | 
|  149   BLINK_EXPORT bool IsSelectedOptionActive() const; |  149   BLINK_EXPORT bool IsSelectedOptionActive() const; | 
|  150   BLINK_EXPORT bool IsVisible() const; |  150   BLINK_EXPORT bool IsVisible() const; | 
|  151   BLINK_EXPORT bool IsVisited() const; |  151   BLINK_EXPORT bool IsVisited() const; | 
|  152  |  152  | 
|  153   BLINK_EXPORT WebString AccessKey() const; |  153   BLINK_EXPORT WebString AccessKey() const; | 
|  154   BLINK_EXPORT unsigned BackgroundColor() const; |  154   BLINK_EXPORT unsigned BackgroundColor() const; | 
|  155   BLINK_EXPORT unsigned GetColor() const; |  155   BLINK_EXPORT unsigned GetColor() const; | 
| (...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  358   operator AXObjectImpl*() const; |  358   operator AXObjectImpl*() const; | 
|  359 #endif |  359 #endif | 
|  360  |  360  | 
|  361  private: |  361  private: | 
|  362   WebPrivatePtr<AXObjectImpl> private_; |  362   WebPrivatePtr<AXObjectImpl> private_; | 
|  363 }; |  363 }; | 
|  364  |  364  | 
|  365 }  // namespace blink |  365 }  // namespace blink | 
|  366  |  366  | 
|  367 #endif |  367 #endif | 
| OLD | NEW |