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

Unified Diff: Source/core/dom/AXObjectCache.h

Issue 1072273006: Oilpan: Prepare moving AXObject to heap (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/core/dom/Element.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/AXObjectCache.h
diff --git a/Source/core/dom/AXObjectCache.h b/Source/core/dom/AXObjectCache.h
index 186005aebd0f8d88e2a4a487dc9e6f5a49241dea..0628593c348569643807b2a3b7d1fbb11ba557d6 100644
--- a/Source/core/dom/AXObjectCache.h
+++ b/Source/core/dom/AXObjectCache.h
@@ -32,6 +32,8 @@
typedef unsigned AXID;
namespace blink {
+
+class AbstractInlineTextBox;
class AXObject;
class FrameView;
class HTMLOptionElement;
@@ -96,6 +98,7 @@ public:
virtual void remove(LayoutObject*) = 0;
virtual void remove(Node*) = 0;
virtual void remove(Widget*) = 0;
+ virtual void remove(AbstractInlineTextBox*) = 0;
virtual const Element* rootAXEditableElement(const Node*) = 0;
@@ -119,8 +122,6 @@ public:
virtual void setCanvasObjectBounds(Element*, const LayoutRect&) = 0;
- virtual void clearWeakMembers(Visitor*) = 0;
-
virtual void inlineTextBoxesUpdated(LayoutObject*) = 0;
// Called when the scroll offset changes.
« no previous file with comments | « no previous file | Source/core/dom/Element.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698