| Index: components/mus/public/cpp/tests/window_server_test_base.cc
|
| diff --git a/components/mus/public/cpp/tests/window_server_test_base.cc b/components/mus/public/cpp/tests/window_server_test_base.cc
|
| index fe7a922c024d2876b08412a520e9dd73b88cdd74..e3c06d8d422fc02a72600a4ebbbdb2b8c31b72cd 100644
|
| --- a/components/mus/public/cpp/tests/window_server_test_base.cc
|
| +++ b/components/mus/public/cpp/tests/window_server_test_base.cc
|
| @@ -113,9 +113,9 @@ Window* WindowServerTestBase::OnWmCreateTopLevelWindow(
|
| : nullptr;
|
| }
|
|
|
| -void WindowServerTestBase::OnAccelerator(uint32_t id, mojom::EventPtr event) {
|
| +void WindowServerTestBase::OnAccelerator(uint32_t id, const ui::Event& event) {
|
| if (window_manager_delegate_)
|
| - window_manager_delegate_->OnAccelerator(id, std::move(event));
|
| + window_manager_delegate_->OnAccelerator(id, event);
|
| }
|
|
|
| void WindowServerTestBase::Create(
|
|
|