| Index: mash/simple_wm/simple_wm.cc
|
| diff --git a/mash/simple_wm/simple_wm.cc b/mash/simple_wm/simple_wm.cc
|
| index b8f60c789c0116f214ceb0f4cc8e12f6078e7e2c..1bb1d1bf8d0bc8cf6fccce7875a8099ede3319f0 100644
|
| --- a/mash/simple_wm/simple_wm.cc
|
| +++ b/mash/simple_wm/simple_wm.cc
|
| @@ -411,10 +411,9 @@ void SimpleWM::SetWindowManagerClient(
|
| window_manager_client_ = client;
|
| }
|
|
|
| -bool SimpleWM::OnWmSetBounds(aura::Window* window, gfx::Rect* bounds) {
|
| +void SimpleWM::OnWmSetBounds(aura::Window* window, const gfx::Rect& bounds) {
|
| FrameView* frame_view = GetFrameViewForClientWindow(window);
|
| - frame_view->GetWidget()->SetBounds(*bounds);
|
| - return false;
|
| + frame_view->GetWidget()->SetBounds(bounds);
|
| }
|
|
|
| bool SimpleWM::OnWmSetProperty(
|
|
|