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

Unified Diff: Source/core/layout/LayoutMenuList.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/core/html/HTMLSelectElement.cpp ('k') | Source/core/layout/LayoutMenuList.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/LayoutMenuList.h
diff --git a/Source/core/rendering/RenderMenuList.h b/Source/core/layout/LayoutMenuList.h
similarity index 94%
rename from Source/core/rendering/RenderMenuList.h
rename to Source/core/layout/LayoutMenuList.h
index 672382f8927645a5d6a8349b04f3c2a7d080aac2..c2c1fa6b19276b36e7be8f1b686509a6c003425d 100644
--- a/Source/core/rendering/RenderMenuList.h
+++ b/Source/core/layout/LayoutMenuList.h
@@ -21,8 +21,8 @@
*
*/
-#ifndef RenderMenuList_h
-#define RenderMenuList_h
+#ifndef LayoutMenuList_h
+#define LayoutMenuList_h
#include "core/html/forms/PopupMenuClient.h"
#include "core/layout/LayoutFlexibleBox.h"
@@ -34,11 +34,11 @@ namespace blink {
class HTMLSelectElement;
class LayoutText;
-class RenderMenuList final : public LayoutFlexibleBox, private PopupMenuClient {
+class LayoutMenuList final : public LayoutFlexibleBox, private PopupMenuClient {
public:
- explicit RenderMenuList(Element*);
- virtual ~RenderMenuList();
+ explicit LayoutMenuList(Element*);
+ virtual ~LayoutMenuList();
virtual void destroy() override;
bool popupIsVisible() const { return m_popupIsVisible; }
@@ -70,7 +70,7 @@ private:
virtual bool hasControlClip() const override { return true; }
virtual bool canHaveGeneratedChildren() const override { return false; }
- virtual const char* renderName() const override { return "RenderMenuList"; }
+ virtual const char* renderName() const override { return "LayoutMenuList"; }
virtual void computeIntrinsicLogicalWidths(LayoutUnit& minLogicalWidth, LayoutUnit& maxLogicalWidth) const override;
@@ -135,7 +135,7 @@ private:
bool m_popupIsVisible;
};
-DEFINE_LAYOUT_OBJECT_TYPE_CASTS(RenderMenuList, isMenuList());
+DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutMenuList, isMenuList());
}
« no previous file with comments | « Source/core/html/HTMLSelectElement.cpp ('k') | Source/core/layout/LayoutMenuList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698