| Index: components/mus/ws/window_tree_client_unittest.cc
|
| diff --git a/components/mus/ws/window_tree_client_unittest.cc b/components/mus/ws/window_tree_client_unittest.cc
|
| index e4d77a5e4658f473e824612e8fa18570d95b5fce..34169dd21522828cf9091f0da9cca94add0a1622 100644
|
| --- a/components/mus/ws/window_tree_client_unittest.cc
|
| +++ b/components/mus/ws/window_tree_client_unittest.cc
|
| @@ -67,7 +67,8 @@ bool EmbedUrl(shell::Connector* connector,
|
| {
|
| mojom::WindowTreeClientPtr client;
|
| connector->ConnectToInterface(url.get(), &client);
|
| - tree->Embed(root_id, std::move(client),
|
| + const uint32_t embed_flags = 0;
|
| + tree->Embed(root_id, std::move(client), embed_flags,
|
| base::Bind(&EmbedCallbackImpl, &run_loop, &result));
|
| }
|
| run_loop.Run();
|
| @@ -78,7 +79,8 @@ bool Embed(WindowTree* tree, Id root_id, mojom::WindowTreeClientPtr client) {
|
| bool result = false;
|
| base::RunLoop run_loop;
|
| {
|
| - tree->Embed(root_id, std::move(client),
|
| + const uint32_t embed_flags = 0;
|
| + tree->Embed(root_id, std::move(client), embed_flags,
|
| base::Bind(&EmbedCallbackImpl, &run_loop, &result));
|
| }
|
| run_loop.Run();
|
|
|