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

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

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.h
diff --git a/Source/core/layout/LayoutRubyText.h b/Source/core/layout/LayoutRubyText.h
index f8f8d0cfa73794fad9987fc6902d2ae71dc06008..529291e68aaa9a593be887bd3a495a8727b41a23 100644
--- a/Source/core/layout/LayoutRubyText.h
+++ b/Source/core/layout/LayoutRubyText.h
@@ -44,7 +44,7 @@ public:
virtual bool isOfType(RenderObjectType type) const override { return type == RenderObjectRubyText || RenderBlockFlow::isOfType(type); }
- virtual bool isChildAllowed(RenderObject*, RenderStyle*) const override;
+ virtual bool isChildAllowed(RenderObject*, const RenderStyle*) const override;
private:
virtual bool avoidsFloats() const override;

Powered by Google App Engine
This is Rietveld 408576698