Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Side by Side Diff: third_party/WebKit/Source/core/dom/AXObjectCache.h

Issue 1628283002: posinset and setsize for input type, radio, exposed in AX tree (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removed isRadiobutton() Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 88
89 virtual void dispose() = 0; 89 virtual void dispose() = 0;
90 90
91 virtual void selectionChanged(Node*) = 0; 91 virtual void selectionChanged(Node*) = 0;
92 virtual void childrenChanged(Node*) = 0; 92 virtual void childrenChanged(Node*) = 0;
93 virtual void childrenChanged(LayoutObject*) = 0; 93 virtual void childrenChanged(LayoutObject*) = 0;
94 virtual void checkedStateChanged(Node*) = 0; 94 virtual void checkedStateChanged(Node*) = 0;
95 virtual void listboxOptionStateChanged(HTMLOptionElement*) = 0; 95 virtual void listboxOptionStateChanged(HTMLOptionElement*) = 0;
96 virtual void listboxSelectedChildrenChanged(HTMLSelectElement*) = 0; 96 virtual void listboxSelectedChildrenChanged(HTMLSelectElement*) = 0;
97 virtual void listboxActiveIndexChanged(HTMLSelectElement*) = 0; 97 virtual void listboxActiveIndexChanged(HTMLSelectElement*) = 0;
98 virtual void radiobuttonRemovedFromGroup(HTMLInputElement*) = 0;
98 99
99 virtual void remove(LayoutObject*) = 0; 100 virtual void remove(LayoutObject*) = 0;
100 virtual void remove(Node*) = 0; 101 virtual void remove(Node*) = 0;
101 virtual void remove(AbstractInlineTextBox*) = 0; 102 virtual void remove(AbstractInlineTextBox*) = 0;
102 103
103 virtual const Element* rootAXEditableElement(const Node*) = 0; 104 virtual const Element* rootAXEditableElement(const Node*) = 0;
104 105
105 // Called by a node when text or a text equivalent (e.g. alt) attribute is c hanged. 106 // Called by a node when text or a text equivalent (e.g. alt) attribute is c hanged.
106 virtual void textChanged(LayoutObject*) = 0; 107 virtual void textChanged(LayoutObject*) = 0;
107 // Called when a node has just been attached, so we can make sure we have th e right subclass of AXObject. 108 // Called when a node has just been attached, so we can make sure we have th e right subclass of AXObject.
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 private: 160 private:
160 explicit ScopedAXObjectCache(Document&); 161 explicit ScopedAXObjectCache(Document&);
161 162
162 RefPtrWillBePersistent<Document> m_document; 163 RefPtrWillBePersistent<Document> m_document;
163 Persistent<AXObjectCache> m_cache; 164 Persistent<AXObjectCache> m_cache;
164 }; 165 };
165 166
166 } // namespace blink 167 } // namespace blink
167 168
168 #endif 169 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698