| Index: third_party/WebKit/Source/core/editing/serializers/MarkupFormatter.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/serializers/MarkupFormatter.cpp b/third_party/WebKit/Source/core/editing/serializers/MarkupFormatter.cpp
|
| index 5f57af4d57850df66147cd98e09032825440fdcc..b6e1ca65be333bdc664da607b423591d071b0f47 100644
|
| --- a/third_party/WebKit/Source/core/editing/serializers/MarkupFormatter.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/serializers/MarkupFormatter.cpp
|
| @@ -133,7 +133,7 @@ void MarkupFormatter::appendStartMarkup(StringBuilder& result, const Node& node,
|
| {
|
| switch (node.getNodeType()) {
|
| case Node::TEXT_NODE:
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| break;
|
| case Node::COMMENT_NODE:
|
| appendComment(result, toComment(node).data());
|
| @@ -150,13 +150,13 @@ void MarkupFormatter::appendStartMarkup(StringBuilder& result, const Node& node,
|
| appendProcessingInstruction(result, toProcessingInstruction(node).target(), toProcessingInstruction(node).data());
|
| break;
|
| case Node::ELEMENT_NODE:
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| break;
|
| case Node::CDATA_SECTION_NODE:
|
| appendCDATASection(result, toCDATASection(node).data());
|
| break;
|
| case Node::ATTRIBUTE_NODE:
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| break;
|
| }
|
| }
|
|
|