diff --git a/third_party/blink/renderer/core/dom/OWNERS b/third_party/blink/renderer/core/dom/OWNERS index 1828548f566c18..0c86b535391596 100644 --- a/third_party/blink/renderer/core/dom/OWNERS +++ b/third_party/blink/renderer/core/dom/OWNERS @@ -1,4 +1,4 @@ -hayato@chromium.org +masonfreed@chromium.org per-file *_struct_traits*.*=set noparent per-file *_struct_traits*.*=file://ipc/SECURITY_OWNERS diff --git a/third_party/blink/renderer/core/dom/README.md b/third_party/blink/renderer/core/dom/README.md index 55fba416f2f4d9..c6e41077f92f2e 100644 --- a/third_party/blink/renderer/core/dom/README.md +++ b/third_party/blink/renderer/core/dom/README.md @@ -730,7 +730,7 @@ DCHECK. :( Since `Node::UpdateDistributionForFlatTreeTraversal` can take O(N) in the worst case (_even if the distribution flag is clean!_), you should be careful not to call it in hot code paths. If you are not sure, please contact -dom-dev@chromium.org, or add hayato@chromium.org to reviewers. +dom-dev@chromium.org, or add masonfreed@chromium.org to reviewers. Once Blink removes Shadow DOM v0 in the future, you don't need to call `Node::UpdateDistributionForFlatTreeTraversal` before using `FlatTreeTraversal` diff --git a/third_party/blink/renderer/core/dom/node.cc b/third_party/blink/renderer/core/dom/node.cc index d0a43cd4f8aedb..e091a023e85c1d 100644 --- a/third_party/blink/renderer/core/dom/node.cc +++ b/third_party/blink/renderer/core/dom/node.cc @@ -2816,7 +2816,7 @@ HTMLSlotElement* Node::AssignedSlot() const { // in executing RecalcAssignment(), however, unfortunately, // that could happen as follows: // - // 1. RecalsAssignment() can detach a node + // 1. RecalcAssignment() can detach a node // 2. Then, DetachLayoutTree() may use FlatTreeTraversal via the hook of // AXObjectCacheImpl::ChildrenChanged(). //