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

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

Issue 2169273004: Switch all LayoutTests to use new accessibility relative bounding box API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix absolute bounds in AXInlineTextBox::elementRect Created 4 years, 4 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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 virtual void handleEditableTextContentChanged(Node*) = 0; 117 virtual void handleEditableTextContentChanged(Node*) = 0;
118 virtual void handleTextFormControlChanged(Node*) = 0; 118 virtual void handleTextFormControlChanged(Node*) = 0;
119 virtual void handleValueChanged(Node*) = 0; 119 virtual void handleValueChanged(Node*) = 0;
120 virtual void handleUpdateActiveMenuOption(LayoutMenuList*, int optionIndex) = 0; 120 virtual void handleUpdateActiveMenuOption(LayoutMenuList*, int optionIndex) = 0;
121 virtual void didShowMenuListPopup(LayoutMenuList*) = 0; 121 virtual void didShowMenuListPopup(LayoutMenuList*) = 0;
122 virtual void didHideMenuListPopup(LayoutMenuList*) = 0; 122 virtual void didHideMenuListPopup(LayoutMenuList*) = 0;
123 virtual void handleLoadComplete(Document*) = 0; 123 virtual void handleLoadComplete(Document*) = 0;
124 virtual void handleLayoutComplete(Document*) = 0; 124 virtual void handleLayoutComplete(Document*) = 0;
125 virtual void handleClicked(Node*) = 0; 125 virtual void handleClicked(Node*) = 0;
126 126
127 virtual void setCanvasObjectBounds(Element*, const LayoutRect&) = 0; 127 virtual void setCanvasObjectBounds(HTMLCanvasElement*, Element*, const Layou tRect&) = 0;
128 128
129 virtual void inlineTextBoxesUpdated(LineLayoutItem) = 0; 129 virtual void inlineTextBoxesUpdated(LineLayoutItem) = 0;
130 130
131 // Called when the scroll offset changes. 131 // Called when the scroll offset changes.
132 virtual void handleScrollPositionChanged(FrameView*) = 0; 132 virtual void handleScrollPositionChanged(FrameView*) = 0;
133 virtual void handleScrollPositionChanged(LayoutObject*) = 0; 133 virtual void handleScrollPositionChanged(LayoutObject*) = 0;
134 134
135 // Called when scroll bars are added / removed (as the view resizes). 135 // Called when scroll bars are added / removed (as the view resizes).
136 virtual void handleLayoutComplete(LayoutObject*) = 0; 136 virtual void handleLayoutComplete(LayoutObject*) = 0;
137 virtual void handleScrolledToAnchor(const Node* anchorNode) = 0; 137 virtual void handleScrolledToAnchor(const Node* anchorNode) = 0;
(...skipping 25 matching lines...) Expand all
163 private: 163 private:
164 explicit ScopedAXObjectCache(Document&); 164 explicit ScopedAXObjectCache(Document&);
165 165
166 Persistent<Document> m_document; 166 Persistent<Document> m_document;
167 Persistent<AXObjectCache> m_cache; 167 Persistent<AXObjectCache> m_cache;
168 }; 168 };
169 169
170 } // namespace blink 170 } // namespace blink
171 171
172 #endif 172 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698