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

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') | Source/core/layout/line/AbstractInlineTextBox.cpp » ('J')
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..85d94b5462c950354260d70eb77d2859899f58a9 100644
--- a/Source/core/dom/AXObjectCache.h
+++ b/Source/core/dom/AXObjectCache.h
@@ -32,6 +32,7 @@
typedef unsigned AXID;
namespace blink {
+class AbstractInlineTextBox;
tkent 2015/06/25 00:20:47 nit: add a blank line before this line.
keishi 2015/06/25 03:29:27 Done.
class AXObject;
class FrameView;
class HTMLOptionElement;
@@ -96,6 +97,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 +121,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') | Source/core/layout/line/AbstractInlineTextBox.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698