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; |