| 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..2041ce50c6511ff984739d5f8a44a7dead18cc7f 100644
|
| --- a/ui/aura/mus/window_tree_host_mus.cc
|
| +++ b/ui/aura/mus/window_tree_host_mus.cc
|
| @@ -102,6 +102,18 @@ void WindowTreeHostMus::SetBoundsFromServer(const gfx::Rect& bounds) {
|
| SetBounds(bounds);
|
| }
|
|
|
| +void WindowTreeHostMus::SetClientArea(const gfx::Insets& insets) {
|
| + delegate_->OnWindowTreeHostClientAreaWillChange(this, insets);
|
| +}
|
| +
|
| +void WindowTreeHostMus::ClearHitTestMask() {
|
| + delegate_->OnWindowTreeHostClearHitTestMask(this);
|
| +}
|
| +
|
| +void WindowTreeHostMus::SetHitTestMask(const gfx::Rect& rect) {
|
| + delegate_->OnWindowTreeHostHitTestMaskWillChange(this, rect);
|
| +}
|
| +
|
| display::Display WindowTreeHostMus::GetDisplay() const {
|
| for (const display::Display& display :
|
| display::Screen::GetScreen()->GetAllDisplays()) {
|
|
|