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

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

Issue 1937873002: Adds AXExpandedChanged for general roles. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed comment Created 4 years, 7 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 enum AXNotification { 55 enum AXNotification {
56 AXActiveDescendantChanged, 56 AXActiveDescendantChanged,
57 AXAlert, 57 AXAlert,
58 AXAriaAttributeChanged, 58 AXAriaAttributeChanged,
59 AXAutocorrectionOccured, 59 AXAutocorrectionOccured,
60 AXBlur, 60 AXBlur,
61 AXCheckedStateChanged, 61 AXCheckedStateChanged,
62 AXChildrenChanged, 62 AXChildrenChanged,
63 AXClicked, 63 AXClicked,
64 AXDocumentSelectionChanged, 64 AXDocumentSelectionChanged,
65 AXExpandedChanged,
65 AXFocusedUIElementChanged, 66 AXFocusedUIElementChanged,
66 AXHide, 67 AXHide,
67 AXHover, 68 AXHover,
68 AXInvalidStatusChanged, 69 AXInvalidStatusChanged,
69 AXLayoutComplete, 70 AXLayoutComplete,
70 AXLiveRegionChanged, 71 AXLiveRegionChanged,
71 AXLoadComplete, 72 AXLoadComplete,
72 AXLocationChanged, 73 AXLocationChanged,
73 AXMenuListItemSelected, 74 AXMenuListItemSelected,
74 AXMenuListItemUnselected, 75 AXMenuListItemUnselected,
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 private: 162 private:
162 explicit ScopedAXObjectCache(Document&); 163 explicit ScopedAXObjectCache(Document&);
163 164
164 Persistent<Document> m_document; 165 Persistent<Document> m_document;
165 Persistent<AXObjectCache> m_cache; 166 Persistent<AXObjectCache> m_cache;
166 }; 167 };
167 168
168 } // namespace blink 169 } // namespace blink
169 170
170 #endif 171 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698