| 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 |
| 3 * reserved. |
| 3 * | 4 * |
| 4 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 6 * are met: | 7 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 11 * notice, this list of conditions and the following disclaimer in the |
| 11 * documentation and/or other materials provided with the distribution. | 12 * documentation and/or other materials provided with the distribution. |
| 12 * | 13 * |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 virtual void listboxSelectedChildrenChanged(HTMLSelectElement*) = 0; | 102 virtual void listboxSelectedChildrenChanged(HTMLSelectElement*) = 0; |
| 102 virtual void listboxActiveIndexChanged(HTMLSelectElement*) = 0; | 103 virtual void listboxActiveIndexChanged(HTMLSelectElement*) = 0; |
| 103 virtual void radiobuttonRemovedFromGroup(HTMLInputElement*) = 0; | 104 virtual void radiobuttonRemovedFromGroup(HTMLInputElement*) = 0; |
| 104 | 105 |
| 105 virtual void remove(LayoutObject*) = 0; | 106 virtual void remove(LayoutObject*) = 0; |
| 106 virtual void remove(Node*) = 0; | 107 virtual void remove(Node*) = 0; |
| 107 virtual void remove(AbstractInlineTextBox*) = 0; | 108 virtual void remove(AbstractInlineTextBox*) = 0; |
| 108 | 109 |
| 109 virtual const Element* rootAXEditableElement(const Node*) = 0; | 110 virtual const Element* rootAXEditableElement(const Node*) = 0; |
| 110 | 111 |
| 111 // Called by a node when text or a text equivalent (e.g. alt) attribute is cha
nged. | 112 // Called by a node when text or a text equivalent (e.g. alt) attribute is |
| 113 // changed. |
| 112 virtual void textChanged(LayoutObject*) = 0; | 114 virtual void textChanged(LayoutObject*) = 0; |
| 113 // Called when a node has just been attached, so we can make sure we have the
right subclass of AXObject. | 115 // Called when a node has just been attached, so we can make sure we have the |
| 116 // right subclass of AXObject. |
| 114 virtual void updateCacheAfterNodeIsAttached(Node*) = 0; | 117 virtual void updateCacheAfterNodeIsAttached(Node*) = 0; |
| 115 | 118 |
| 116 virtual void handleAttributeChanged(const QualifiedName& attrName, | 119 virtual void handleAttributeChanged(const QualifiedName& attrName, |
| 117 Element*) = 0; | 120 Element*) = 0; |
| 118 virtual void handleFocusedUIElementChanged(Node* oldFocusedNode, | 121 virtual void handleFocusedUIElementChanged(Node* oldFocusedNode, |
| 119 Node* newFocusedNode) = 0; | 122 Node* newFocusedNode) = 0; |
| 120 virtual void handleInitialFocus() = 0; | 123 virtual void handleInitialFocus() = 0; |
| 121 virtual void handleEditableTextContentChanged(Node*) = 0; | 124 virtual void handleEditableTextContentChanged(Node*) = 0; |
| 122 virtual void handleTextFormControlChanged(Node*) = 0; | 125 virtual void handleTextFormControlChanged(Node*) = 0; |
| 123 virtual void handleValueChanged(Node*) = 0; | 126 virtual void handleValueChanged(Node*) = 0; |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 private: | 174 private: |
| 172 explicit ScopedAXObjectCache(Document&); | 175 explicit ScopedAXObjectCache(Document&); |
| 173 | 176 |
| 174 Persistent<Document> m_document; | 177 Persistent<Document> m_document; |
| 175 Persistent<AXObjectCache> m_cache; | 178 Persistent<AXObjectCache> m_cache; |
| 176 }; | 179 }; |
| 177 | 180 |
| 178 } // namespace blink | 181 } // namespace blink |
| 179 | 182 |
| 180 #endif | 183 #endif |
| OLD | NEW |