| Index: ui/aura/mus/window_tree_host_mus.cc
|
| diff --git a/ui/aura/mus/window_tree_host_mus.cc b/ui/aura/mus/window_tree_host_mus.cc
|
| index e458fd2be0246f90e980defd79510518d57cb44a..4af570d9efffc716a2dda48c070538d08c071fc5 100644
|
| --- a/ui/aura/mus/window_tree_host_mus.cc
|
| +++ b/ui/aura/mus/window_tree_host_mus.cc
|
| @@ -102,6 +102,15 @@ void WindowTreeHostMus::SetBoundsFromServer(const gfx::Rect& bounds) {
|
| SetBounds(bounds);
|
| }
|
|
|
| +void WindowTreeHostMus::SetClientArea(const gfx::Insets& insets) {
|
| + delegate_->OnWindowTreeHostClientAreaWillChange(this, insets,
|
| + std::vector<gfx::Rect>());
|
| +}
|
| +
|
| +void WindowTreeHostMus::SetHitTestMask(const base::Optional<gfx::Rect>& rect) {
|
| + delegate_->OnWindowTreeHostHitTestMaskWillChange(this, rect);
|
| +}
|
| +
|
| display::Display WindowTreeHostMus::GetDisplay() const {
|
| for (const display::Display& display :
|
| display::Screen::GetScreen()->GetAllDisplays()) {
|
|
|