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

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

Issue 1868433002: Rename function names to match the DOM Standard (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
« no previous file with comments | « third_party/WebKit/Source/core/dom/Element.cpp ('k') | third_party/WebKit/Source/core/dom/Node.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/dom/Node.h
diff --git a/third_party/WebKit/Source/core/dom/Node.h b/third_party/WebKit/Source/core/dom/Node.h
index a2922b8d5c2c2687060afe3a23dec7ee25512b95..5e6f9ec6a79c2f407f85c58fb3cf57cee1084dec 100644
--- a/third_party/WebKit/Source/core/dom/Node.h
+++ b/third_party/WebKit/Source/core/dom/Node.h
@@ -214,6 +214,7 @@ public:
Node* firstChild() const;
Node* lastChild() const;
Node& treeRoot() const;
+ Node& shadowIncludingRoot() const;
kochi 2016/04/06 08:56:29 Do you use this in the future CL? (probably yes?)
void remove(ExceptionState& = ASSERT_NO_EXCEPTION);
@@ -497,7 +498,7 @@ public:
bool isDescendantOf(const Node*) const;
bool contains(const Node*) const;
- bool containsIncludingShadowDOM(const Node*) const;
+ bool isShadowIncludingInclusiveAncestorOf(const Node*) const;
bool containsIncludingHostElements(const Node&) const;
Node* commonAncestor(const Node&, ContainerNode* (*parent)(const Node&)) const;
« no previous file with comments | « third_party/WebKit/Source/core/dom/Element.cpp ('k') | third_party/WebKit/Source/core/dom/Node.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698