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

Side by Side Diff: Source/core/accessibility/AXObjectCache.h

Issue 235113002: Oilpan: Remove guardRef and guardDeref from TreeScope. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Only perform weak processing of the event handler registry if the document is active. Created 6 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/core/accessibility/AXObjectCache.cpp » ('j') | Source/core/dom/Document.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW
« no previous file with comments | « no previous file | Source/core/accessibility/AXObjectCache.cpp » ('j') | Source/core/dom/Document.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698