| Index: third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp b/third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp
|
| index ae6adb2ce45772953fb08c1909cb0ccbc327a498..c97d0f597f2b7b67fe5d1da63a6893d776c6824c 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp
|
| @@ -105,7 +105,7 @@ static String getTagName(Node* n)
|
| {
|
| if (n->isDocumentNode())
|
| return "";
|
| - if (n->getNodeType() == Node::COMMENT_NODE)
|
| + if (n->getNodeType() == Node::kCommentNode)
|
| return "COMMENT";
|
| return n->nodeName();
|
| }
|
|
|