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

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

Issue 1348503003: One AXObjectCache per frame (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix issues in AutomationApiTest.Events Created 5 years, 3 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
Index: third_party/WebKit/Source/core/dom/AXObjectCache.h
diff --git a/third_party/WebKit/Source/core/dom/AXObjectCache.h b/third_party/WebKit/Source/core/dom/AXObjectCache.h
index 79618c4d96bbcce1e53776a340c4b3697faf25f2..edc2655f871a08669fd079422a1de68798554b6b 100644
--- a/third_party/WebKit/Source/core/dom/AXObjectCache.h
+++ b/third_party/WebKit/Source/core/dom/AXObjectCache.h
@@ -40,7 +40,6 @@ class HTMLOptionElement;
class HTMLSelectElement;
class LayoutMenuList;
class Page;
-class Widget;
class CORE_EXPORT AXObjectCache : public GarbageCollectedFinalized<AXObjectCache> {
WTF_MAKE_NONCOPYABLE(AXObjectCache);
@@ -96,7 +95,6 @@ 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;
@@ -127,8 +125,6 @@ public:
virtual void handleScrollPositionChanged(FrameView*) = 0;
virtual void handleScrollPositionChanged(LayoutObject*) = 0;
- // Called when scroll bars are added / removed (as the view resizes).
- virtual void handleScrollbarUpdate(FrameView*) = 0;
virtual void handleLayoutComplete(LayoutObject*) = 0;
virtual void handleScrolledToAnchor(const Node* anchorNode) = 0;

Powered by Google App Engine
This is Rietveld 408576698