| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012, Google Inc. All rights reserved. | 2 * Copyright (C) 2012, 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 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 // DOM and Render tree access. | 201 // DOM and Render tree access. |
| 202 Element* actionElement() const override; | 202 Element* actionElement() const override; |
| 203 Element* anchorElement() const override; | 203 Element* anchorElement() const override; |
| 204 Document* getDocument() const override; | 204 Document* getDocument() const override; |
| 205 Node* getNode() const override { return m_node; } | 205 Node* getNode() const override { return m_node; } |
| 206 | 206 |
| 207 // Modify or take an action on an object. | 207 // Modify or take an action on an object. |
| 208 void setFocused(bool) final; | 208 void setFocused(bool) final; |
| 209 void increment() final; | 209 void increment() final; |
| 210 void decrement() final; | 210 void decrement() final; |
| 211 void setSequentialFocusNavigationStartingPoint() final; |
| 211 | 212 |
| 212 // Notifications that this object may have changed. | 213 // Notifications that this object may have changed. |
| 213 void childrenChanged() override; | 214 void childrenChanged() override; |
| 214 void selectionChanged() final; | 215 void selectionChanged() final; |
| 215 void textChanged() override; | 216 void textChanged() override; |
| 216 void updateAccessibilityRole() final; | 217 void updateAccessibilityRole() final; |
| 217 | 218 |
| 218 // Position in set and Size of set | 219 // Position in set and Size of set |
| 219 int posInSet() const override; | 220 int posInSet() const override; |
| 220 int setSize() const override; | 221 int setSize() const override; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 234 AXRelatedObjectVector*, | 235 AXRelatedObjectVector*, |
| 235 NameSources*, | 236 NameSources*, |
| 236 bool* foundTextAlternative) const; | 237 bool* foundTextAlternative) const; |
| 237 float stepValueForRange() const; | 238 float stepValueForRange() const; |
| 238 bool isDescendantOfElementType(const HTMLQualifiedName& tagName) const; | 239 bool isDescendantOfElementType(const HTMLQualifiedName& tagName) const; |
| 239 }; | 240 }; |
| 240 | 241 |
| 241 } // namespace blink | 242 } // namespace blink |
| 242 | 243 |
| 243 #endif // AXNodeObject_h | 244 #endif // AXNodeObject_h |
| OLD | NEW |