Index: third_party/WebKit/Source/core/dom/CDATASection.h |
diff --git a/third_party/WebKit/Source/core/dom/CDATASection.h b/third_party/WebKit/Source/core/dom/CDATASection.h |
index c461800ba36f4f7d1646b9dba3502cd81b800562..1f2879bca31d5974e08fadda43617af700a13b25 100644 |
--- a/third_party/WebKit/Source/core/dom/CDATASection.h |
+++ b/third_party/WebKit/Source/core/dom/CDATASection.h |
@@ -36,11 +36,11 @@ private: |
CDATASection(Document&, const String&); |
String nodeName() const override; |
- NodeType nodeType() const override; |
+ NodeType getNodeType() const override; |
PassRefPtrWillBeRawPtr<Text> cloneWithData(const String&) override; |
}; |
-DEFINE_NODE_TYPE_CASTS(CDATASection, nodeType() == Node::CDATA_SECTION_NODE); |
+DEFINE_NODE_TYPE_CASTS(CDATASection, getNodeType() == Node::CDATA_SECTION_NODE); |
} // namespace blink |