OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2014, Google Inc. All rights reserved. | 2 * Copyright (C) 2014, 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 | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 virtual void textChanged(LayoutObject*) override; | 79 virtual void textChanged(LayoutObject*) override; |
80 // Called when a node has just been attached, so we can make sure we have th
e right subclass of AXObject. | 80 // Called when a node has just been attached, so we can make sure we have th
e right subclass of AXObject. |
81 virtual void updateCacheAfterNodeIsAttached(Node*) override; | 81 virtual void updateCacheAfterNodeIsAttached(Node*) override; |
82 | 82 |
83 virtual void handleAttributeChanged(const QualifiedName& attrName, Element*)
override; | 83 virtual void handleAttributeChanged(const QualifiedName& attrName, Element*)
override; |
84 virtual void handleFocusedUIElementChanged(Node* oldFocusedNode, Node* newFo
cusedNode) override; | 84 virtual void handleFocusedUIElementChanged(Node* oldFocusedNode, Node* newFo
cusedNode) override; |
85 virtual void handleInitialFocus() override; | 85 virtual void handleInitialFocus() override; |
86 virtual void handleTextFormControlChanged(Node*) override; | 86 virtual void handleTextFormControlChanged(Node*) override; |
87 virtual void handleEditableTextContentChanged(Node*) override; | 87 virtual void handleEditableTextContentChanged(Node*) override; |
88 virtual void handleValueChanged(Node*) override; | 88 virtual void handleValueChanged(Node*) override; |
89 virtual void handleUpdateActiveMenuOption(RenderMenuList*, int optionIndex)
override; | 89 virtual void handleUpdateActiveMenuOption(LayoutMenuList*, int optionIndex)
override; |
90 virtual void handleLoadComplete(Document*) override; | 90 virtual void handleLoadComplete(Document*) override; |
91 virtual void handleLayoutComplete(Document*) override; | 91 virtual void handleLayoutComplete(Document*) override; |
92 | 92 |
93 virtual void setCanvasObjectBounds(Element*, const LayoutRect&) override; | 93 virtual void setCanvasObjectBounds(Element*, const LayoutRect&) override; |
94 | 94 |
95 virtual void clearWeakMembers(Visitor*) override; | 95 virtual void clearWeakMembers(Visitor*) override; |
96 | 96 |
97 virtual void inlineTextBoxesUpdated(LayoutObject* renderer) override; | 97 virtual void inlineTextBoxesUpdated(LayoutObject* renderer) override; |
98 | 98 |
99 // Called when the scroll offset changes. | 99 // Called when the scroll offset changes. |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 // This is the only subclass of AXObjectCache. | 200 // This is the only subclass of AXObjectCache. |
201 DEFINE_TYPE_CASTS(AXObjectCacheImpl, AXObjectCache, cache, true, true); | 201 DEFINE_TYPE_CASTS(AXObjectCacheImpl, AXObjectCache, cache, true, true); |
202 | 202 |
203 bool nodeHasRole(Node*, const String& role); | 203 bool nodeHasRole(Node*, const String& role); |
204 // This will let you know if aria-hidden was explicitly set to false. | 204 // This will let you know if aria-hidden was explicitly set to false. |
205 bool isNodeAriaVisible(Node*); | 205 bool isNodeAriaVisible(Node*); |
206 | 206 |
207 } | 207 } |
208 | 208 |
209 #endif | 209 #endif |
OLD | NEW |