| Index: third_party/WebKit/Source/core/dom/TreeScope.h
|
| diff --git a/third_party/WebKit/Source/core/dom/TreeScope.h b/third_party/WebKit/Source/core/dom/TreeScope.h
|
| index 3cb9557a3dccb274120e69a1085f107f7baf79a8..005cd87e5c861ac1ea739e61a67d26bead7d0aeb 100644
|
| --- a/third_party/WebKit/Source/core/dom/TreeScope.h
|
| +++ b/third_party/WebKit/Source/core/dom/TreeScope.h
|
| @@ -57,7 +57,10 @@ public:
|
| bool isInclusiveOlderSiblingShadowRootOrAncestorTreeScopeOf(const TreeScope&) const;
|
|
|
| Element* adjustedFocusedElement() const;
|
| - Element* adjustedPointerLockElement(const Element&) const;
|
| + // Finds a retargeted element to the given argument, when the retargetd element is in this
|
| + // TreeScope. Returns null otherwise.
|
| + // TODO(kochi): once this algorithm is named in the spec, rename the method name.
|
| + Element* adjustedElement(const Element&) const;
|
| Element* getElementById(const AtomicString&) const;
|
| const HeapVector<Member<Element>>& getAllElementsById(const AtomicString&) const;
|
| bool hasElementWithId(const AtomicString& id) const;
|
|
|