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

Unified Diff: third_party/WebKit/Source/core/frame/FrameView.cpp

Issue 1761633002: One accessibility tree per frame. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix is-richly-editable test Created 4 years, 9 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 | « third_party/WebKit/Source/core/frame/FrameView.h ('k') | third_party/WebKit/Source/core/frame/LocalFrame.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/frame/FrameView.cpp
diff --git a/third_party/WebKit/Source/core/frame/FrameView.cpp b/third_party/WebKit/Source/core/frame/FrameView.cpp
index 5973ff23a0c8405835530846834810eee2cf0d52..7725566cd96de2cc4b460e883e9c67996694fa85 100644
--- a/third_party/WebKit/Source/core/frame/FrameView.cpp
+++ b/third_party/WebKit/Source/core/frame/FrameView.cpp
@@ -250,12 +250,6 @@ void FrameView::forAllNonThrottledFrameViews(Function function)
}
}
-void FrameView::removeFromAXObjectCache()
-{
- if (AXObjectCache* cache = axObjectCache())
- cache->childrenChanged(m_frame->pagePopupOwner());
-}
-
void FrameView::init()
{
reset();
@@ -277,10 +271,6 @@ void FrameView::dispose()
detachScrollbars();
- // When the view is no longer associated with a frame, it needs to be removed from the ax object cache
- // right now, otherwise it won't be able to reach the topDocument()'s axObject cache later.
- removeFromAXObjectCache();
-
if (ScrollingCoordinator* scrollingCoordinator = this->scrollingCoordinator())
scrollingCoordinator->willDestroyScrollableArea(this);
« no previous file with comments | « third_party/WebKit/Source/core/frame/FrameView.h ('k') | third_party/WebKit/Source/core/frame/LocalFrame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698