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

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

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/AXLayoutObject.cpp ('k') | Source/modules/accessibility/AXMenuList.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/accessibility/AXMenuList.h
diff --git a/Source/modules/accessibility/AXMenuList.h b/Source/modules/accessibility/AXMenuList.h
index 8b9f592dbfbd5fe713496032f98980c7f315c6cf..4931267f7ae6c92df0c106039f9066ded46343b9 100644
--- a/Source/modules/accessibility/AXMenuList.h
+++ b/Source/modules/accessibility/AXMenuList.h
@@ -31,11 +31,11 @@
namespace blink {
class AXObjectCacheImpl;
-class RenderMenuList;
+class LayoutMenuList;
class AXMenuList final : public AXLayoutObject {
public:
- static PassRefPtr<AXMenuList> create(RenderMenuList* renderer, AXObjectCacheImpl*);
+ static PassRefPtr<AXMenuList> create(LayoutMenuList* layoutObject, AXObjectCacheImpl*);
virtual bool isCollapsed() const override;
virtual AccessibilityExpanded isExpanded() const override final;
@@ -44,7 +44,7 @@ public:
void didUpdateActiveOption(int optionIndex);
private:
- AXMenuList(RenderMenuList*, AXObjectCacheImpl*);
+ AXMenuList(LayoutMenuList*, AXObjectCacheImpl*);
virtual bool isMenuList() const override { return true; }
virtual AccessibilityRole roleValue() const override { return PopUpButtonRole; }
« no previous file with comments | « Source/modules/accessibility/AXLayoutObject.cpp ('k') | Source/modules/accessibility/AXMenuList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698