| Index: Source/core/layout/LayoutRubyRun.cpp
|
| diff --git a/Source/core/layout/LayoutRubyRun.cpp b/Source/core/layout/LayoutRubyRun.cpp
|
| index 913f50ff326116aadada4ea0260e3a0570920c66..7f8c29ebb40be920c55315f5d75e30c339831768 100644
|
| --- a/Source/core/layout/LayoutRubyRun.cpp
|
| +++ b/Source/core/layout/LayoutRubyRun.cpp
|
| @@ -39,7 +39,7 @@
|
| namespace blink {
|
|
|
| LayoutRubyRun::LayoutRubyRun()
|
| - : LayoutBlockFlow(0)
|
| + : LayoutBlockFlow(nullptr)
|
| {
|
| setReplaced(true);
|
| setInline(true);
|
| @@ -206,7 +206,7 @@ LayoutObject* LayoutRubyRun::layoutSpecialExcludedChild(bool relayoutChildren, S
|
| // Don't bother positioning the LayoutRubyRun yet.
|
| LayoutRubyText* rt = rubyText();
|
| if (!rt)
|
| - return 0;
|
| + return nullptr;
|
| if (relayoutChildren)
|
| layoutScope.setChildNeedsLayout(rt);
|
| rt->layoutIfNeeded();
|
|
|