| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2003, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights
reserved. | 2 * Copyright (C) 2003, 2006, 2007, 2008, 2009, 2010, 2011 Apple 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 AXObject* get(Widget*); | 101 AXObject* get(Widget*); |
| 102 AXObject* get(Node*); | 102 AXObject* get(Node*); |
| 103 AXObject* get(AbstractInlineTextBox*); | 103 AXObject* get(AbstractInlineTextBox*); |
| 104 | 104 |
| 105 void remove(RenderObject*); | 105 void remove(RenderObject*); |
| 106 void remove(Node*); | 106 void remove(Node*); |
| 107 void remove(Widget*); | 107 void remove(Widget*); |
| 108 void remove(AbstractInlineTextBox*); | 108 void remove(AbstractInlineTextBox*); |
| 109 void remove(AXID); | 109 void remove(AXID); |
| 110 | 110 |
| 111 void clearWeakMembers(Visitor*); |
| 112 |
| 111 void detachWrapper(AXObject*); | 113 void detachWrapper(AXObject*); |
| 112 void attachWrapper(AXObject*); | 114 void attachWrapper(AXObject*); |
| 113 void childrenChanged(Node*); | 115 void childrenChanged(Node*); |
| 114 void childrenChanged(RenderObject*); | 116 void childrenChanged(RenderObject*); |
| 115 void childrenChanged(AXObject*); | 117 void childrenChanged(AXObject*); |
| 116 void checkedStateChanged(Node*); | 118 void checkedStateChanged(Node*); |
| 117 void selectedChildrenChanged(Node*); | 119 void selectedChildrenChanged(Node*); |
| 118 void selectedChildrenChanged(RenderObject*); | 120 void selectedChildrenChanged(RenderObject*); |
| 119 void selectionChanged(Node*); | 121 void selectionChanged(Node*); |
| 120 // Called by a node when text or a text equivalent (e.g. alt) attribute is c
hanged. | 122 // Called by a node when text or a text equivalent (e.g. alt) attribute is c
hanged. |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 AXID getAXID(AXObject*); | 232 AXID getAXID(AXObject*); |
| 231 }; | 233 }; |
| 232 | 234 |
| 233 bool nodeHasRole(Node*, const String& role); | 235 bool nodeHasRole(Node*, const String& role); |
| 234 // This will let you know if aria-hidden was explicitly set to false. | 236 // This will let you know if aria-hidden was explicitly set to false. |
| 235 bool isNodeAriaVisible(Node*); | 237 bool isNodeAriaVisible(Node*); |
| 236 | 238 |
| 237 } | 239 } |
| 238 | 240 |
| 239 #endif | 241 #endif |
| OLD | NEW |