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

Unified Diff: Source/modules/accessibility/AXMenuList.cpp

Issue 966883002: renderer/RenderMenuList.* -> layout/LayoutMenuList.* (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove OWNERS, allowing Source/core/rendering to be deleted. Created 5 years, 10 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 | « Source/modules/accessibility/AXMenuList.h ('k') | Source/modules/accessibility/AXObjectCacheImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/accessibility/AXMenuList.cpp
diff --git a/Source/modules/accessibility/AXMenuList.cpp b/Source/modules/accessibility/AXMenuList.cpp
index a01a049819ba3ec916c4a131401287bc4dce27a7..601d34f2c4fd5a13a63ce6b31891812e69b8f430 100644
--- a/Source/modules/accessibility/AXMenuList.cpp
+++ b/Source/modules/accessibility/AXMenuList.cpp
@@ -26,25 +26,25 @@
#include "config.h"
#include "modules/accessibility/AXMenuList.h"
-#include "core/rendering/RenderMenuList.h"
+#include "core/layout/LayoutMenuList.h"
#include "modules/accessibility/AXMenuListPopup.h"
#include "modules/accessibility/AXObjectCacheImpl.h"
namespace blink {
-AXMenuList::AXMenuList(RenderMenuList* renderer, AXObjectCacheImpl* axObjectCache)
- : AXLayoutObject(renderer, axObjectCache)
+AXMenuList::AXMenuList(LayoutMenuList* layoutObject, AXObjectCacheImpl* axObjectCache)
+ : AXLayoutObject(layoutObject, axObjectCache)
{
}
-PassRefPtr<AXMenuList> AXMenuList::create(RenderMenuList* renderer, AXObjectCacheImpl* axObjectCache)
+PassRefPtr<AXMenuList> AXMenuList::create(LayoutMenuList* layoutObject, AXObjectCacheImpl* axObjectCache)
{
- return adoptRef(new AXMenuList(renderer, axObjectCache));
+ return adoptRef(new AXMenuList(layoutObject, axObjectCache));
}
bool AXMenuList::press() const
{
- RenderMenuList* menuList = toRenderMenuList(m_renderer);
+ LayoutMenuList* menuList = toLayoutMenuList(m_renderer);
if (menuList->popupIsVisible())
menuList->hidePopup();
else
@@ -84,7 +84,7 @@ void AXMenuList::childrenChanged()
bool AXMenuList::isCollapsed() const
{
- return !toRenderMenuList(m_renderer)->popupIsVisible();
+ return !toLayoutMenuList(m_renderer)->popupIsVisible();
}
AccessibilityExpanded AXMenuList::isExpanded() const
« no previous file with comments | « Source/modules/accessibility/AXMenuList.h ('k') | Source/modules/accessibility/AXObjectCacheImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698