| Index: third_party/WebKit/Source/core/layout/LayoutRuby.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutRuby.cpp b/third_party/WebKit/Source/core/layout/LayoutRuby.cpp
|
| index e9eca73c61b6a35f931f10328a2ce5228af2ad84..f44e766b31311c16ec2bcd1b2ed233d567f9a632 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutRuby.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutRuby.cpp
|
| @@ -84,8 +84,8 @@ void LayoutRubyAsInline::addChild(LayoutObject* child,
|
| run->addChild(child, beforeChild);
|
| return;
|
| }
|
| - ASSERT_NOT_REACHED(); // beforeChild should always have a run as parent!
|
| - // Emergency fallback: fall through and just append.
|
| + NOTREACHED(); // beforeChild should always have a run as parent!
|
| + // Emergency fallback: fall through and just append.
|
| }
|
|
|
| // If the new child would be appended, try to add the child to the previous
|
| @@ -149,8 +149,8 @@ void LayoutRubyAsBlock::addChild(LayoutObject* child,
|
| run->addChild(child, beforeChild);
|
| return;
|
| }
|
| - ASSERT_NOT_REACHED(); // beforeChild should always have a run as parent!
|
| - // Emergency fallback: fall through and just append.
|
| + NOTREACHED(); // beforeChild should always have a run as parent!
|
| + // Emergency fallback: fall through and just append.
|
| }
|
|
|
| // If the new child would be appended, try to add the child to the previous
|
|
|