Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Unified Diff: third_party/WebKit/Source/core/dom/Comment.h

Issue 1738613002: Rename enums/functions that collide in chromium style in core/dom/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@get-names-3
Patch Set: get-names-4: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/dom/Comment.h
diff --git a/third_party/WebKit/Source/core/dom/Comment.h b/third_party/WebKit/Source/core/dom/Comment.h
index 45a0444000dec49d37bd0f2042481a4d62c6be2e..8a1e9ead7dd091c6c63a2d8425e4d5eafec8bf1f 100644
--- a/third_party/WebKit/Source/core/dom/Comment.h
+++ b/third_party/WebKit/Source/core/dom/Comment.h
@@ -36,11 +36,11 @@ private:
Comment(Document&, const String&);
String nodeName() const override;
- NodeType nodeType() const override;
+ NodeType getNodeType() const override;
PassRefPtrWillBeRawPtr<Node> cloneNode(bool deep) override;
};
-DEFINE_NODE_TYPE_CASTS(Comment, nodeType() == Node::COMMENT_NODE);
+DEFINE_NODE_TYPE_CASTS(Comment, getNodeType() == Node::COMMENT_NODE);
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698