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

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

Issue 889563002: Make RenderObject::style() return a const object (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Blind fix for Mac. Created 5 years, 11 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
Index: Source/core/layout/LayoutRubyText.cpp
diff --git a/Source/core/layout/LayoutRubyText.cpp b/Source/core/layout/LayoutRubyText.cpp
index 90aed6185579b499fae88436802d54da5195cb62..d91103139c65b421a24affea98a98a972b2eb995 100644
--- a/Source/core/layout/LayoutRubyText.cpp
+++ b/Source/core/layout/LayoutRubyText.cpp
@@ -44,7 +44,7 @@ LayoutRubyText::~LayoutRubyText()
{
}
-bool LayoutRubyText::isChildAllowed(RenderObject* child, RenderStyle*) const
+bool LayoutRubyText::isChildAllowed(RenderObject* child, const RenderStyle*) const
{
return child->isInline();
}

Powered by Google App Engine
This is Rietveld 408576698