| Index: components/mus/public/cpp/lib/window_tree_client_impl.cc
|
| diff --git a/components/mus/public/cpp/lib/window_tree_client_impl.cc b/components/mus/public/cpp/lib/window_tree_client_impl.cc
|
| index 7fd7995376f45a7ab0554b6dd813b4233078647f..6c51c75d3b5f60f4b152656abb275493771fc3e8 100644
|
| --- a/components/mus/public/cpp/lib/window_tree_client_impl.cc
|
| +++ b/components/mus/public/cpp/lib/window_tree_client_impl.cc
|
| @@ -313,6 +313,16 @@ void WindowTreeClientImpl::SetClientArea(
|
| mojo::Array<mojo::RectPtr>::From(additional_client_areas));
|
| }
|
|
|
| +void WindowTreeClientImpl::SetHitTestMask(Id window_id, const gfx::Rect& mask) {
|
| + DCHECK(tree_);
|
| + tree_->SetHitTestMask(window_id, mojo::Rect::From(mask));
|
| +}
|
| +
|
| +void WindowTreeClientImpl::ClearHitTestMask(Id window_id) {
|
| + DCHECK(tree_);
|
| + tree_->SetHitTestMask(window_id, nullptr);
|
| +}
|
| +
|
| void WindowTreeClientImpl::SetFocus(Window* window) {
|
| // In order for us to get here we had to have exposed a window, which implies
|
| // we got a connection.
|
|
|