| 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 95256f8fd2dcc4cb21f24d1ecd36690a539a9a54..ca66714af5948f3edcefdf76ab7882eb839e0c45 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);
|
|
|
|
|