| Index: components/mus/public/cpp/tests/test_window_tree.cc
|
| diff --git a/components/mus/public/cpp/tests/test_window_tree.cc b/components/mus/public/cpp/tests/test_window_tree.cc
|
| index 075057586da6b529745f57f24dd0a64d4b26307a..df1aa7acc80cf350a05454926da8531313ab59d1 100644
|
| --- a/components/mus/public/cpp/tests/test_window_tree.cc
|
| +++ b/components/mus/public/cpp/tests/test_window_tree.cc
|
| @@ -151,4 +151,12 @@ void TestWindowTree::OnWindowInputEventAck(uint32_t event_id, bool handled) {
|
| void TestWindowTree::GetWindowManagerClient(
|
| mojo::AssociatedInterfaceRequest<mojom::WindowManagerClient> internal) {}
|
|
|
| +void TestWindowTree::GetCursorScreenPoint(
|
| + const GetCursorScreenPointCallback& callback) {
|
| + mojo::PointPtr p = mojo::Point::New();
|
| + p->x = 0;
|
| + p->y = 0;
|
| + callback.Run(std::move(p));
|
| +}
|
| +
|
| } // namespace mus
|
|
|