| Index: services/ui/test_wm/test_wm.cc
|
| diff --git a/services/ui/test_wm/test_wm.cc b/services/ui/test_wm/test_wm.cc
|
| index 2345063fdfe9273f32c157274b5832f8ee4e51e2..cdca7eeeaaa098a6a336e8a79312e1c1fa5d6174 100644
|
| --- a/services/ui/test_wm/test_wm.cc
|
| +++ b/services/ui/test_wm/test_wm.cc
|
| @@ -98,9 +98,8 @@ class TestWM : public service_manager::Service,
|
| void SetWindowManagerClient(aura::WindowManagerClient* client) override {
|
| window_manager_client_ = client;
|
| }
|
| - bool OnWmSetBounds(aura::Window* window, gfx::Rect* bounds) override {
|
| - window->SetBounds(*bounds);
|
| - return true;
|
| + void OnWmSetBounds(aura::Window* window, const gfx::Rect& bounds) override {
|
| + window->SetBounds(bounds);
|
| }
|
| bool OnWmSetProperty(
|
| aura::Window* window,
|
|
|