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

Unified Diff: Source/core/layout/LayoutMenuList.cpp

Issue 1095043003: Convert LayoutObject renderer names. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 8 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/layout/LayoutListItem.cpp ('k') | Source/core/layout/LayoutObject.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/LayoutMenuList.cpp
diff --git a/Source/core/layout/LayoutMenuList.cpp b/Source/core/layout/LayoutMenuList.cpp
index 449c6bce9d36a0ef959bde30370794fe16d3d1ef..50b8d5a7d8984bb911cc70ff9aae14be58de3c0c 100644
--- a/Source/core/layout/LayoutMenuList.cpp
+++ b/Source/core/layout/LayoutMenuList.cpp
@@ -290,7 +290,7 @@ void LayoutMenuList::setText(const String& s)
if (!m_buttonText || !m_buttonText->isBR()) {
// FIXME: We should not modify the structure of the render tree
// during layout. crbug.com/370462
- DeprecatedDisableModifyRenderTreeStructureAsserts disabler;
+ DeprecatedDisableModifyLayoutTreeStructureAsserts disabler;
if (m_buttonText)
m_buttonText->destroy();
m_buttonText = new LayoutBR(&document());
@@ -303,7 +303,7 @@ void LayoutMenuList::setText(const String& s)
} else {
// FIXME: We should not modify the structure of the render tree
// during layout. crbug.com/370462
- DeprecatedDisableModifyRenderTreeStructureAsserts disabler;
+ DeprecatedDisableModifyLayoutTreeStructureAsserts disabler;
if (m_buttonText)
m_buttonText->destroy();
m_buttonText = new LayoutText(&document(), s.impl());
« no previous file with comments | « Source/core/layout/LayoutListItem.cpp ('k') | Source/core/layout/LayoutObject.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698