Index: third_party/WebKit/Source/core/dom/Attr.h |
diff --git a/third_party/WebKit/Source/core/dom/Attr.h b/third_party/WebKit/Source/core/dom/Attr.h |
index 9bfd82932a6fc1dcf00bbab7a9fbc23126406a54..3fdd0e99e772e4c0b5defb5a239aba7099bd607d 100644 |
--- a/third_party/WebKit/Source/core/dom/Attr.h |
+++ b/third_party/WebKit/Source/core/dom/Attr.h |
@@ -66,7 +66,7 @@ private: |
bool isElementNode() const = delete; // This will catch anyone doing an unnecessary check. |
String nodeName() const override { return name(); } |
- NodeType nodeType() const override { return ATTRIBUTE_NODE; } |
+ NodeType getNodeType() const override { return ATTRIBUTE_NODE; } |
String nodeValue() const override { return value(); } |
void setNodeValue(const String&) override; |