| Index: components/mus/public/cpp/lib/view_tree_host_factory.cc
|
| diff --git a/components/mus/public/cpp/lib/view_tree_host_factory.cc b/components/mus/public/cpp/lib/view_tree_host_factory.cc
|
| index 1da65c941b2bf0f3484734db8a16f21f054fa96e..4f649fec6e77f7cffb6c95dd6ba37e551d64453e 100644
|
| --- a/components/mus/public/cpp/lib/view_tree_host_factory.cc
|
| +++ b/components/mus/public/cpp/lib/view_tree_host_factory.cc
|
| @@ -15,7 +15,9 @@ void CreateViewTreeHost(mojo::ViewTreeHostFactory* factory,
|
| ViewTreeDelegate* delegate,
|
| mojo::ViewTreeHostPtr* host) {
|
| mojo::ViewTreeClientPtr tree_client;
|
| - ViewTreeConnection::Create(delegate, GetProxy(&tree_client));
|
| + ViewTreeConnection::Create(
|
| + delegate, GetProxy(&tree_client),
|
| + ViewTreeConnection::CreateType::DONT_WAIT_FOR_EMBED);
|
| factory->CreateViewTreeHost(GetProxy(host), host_client.Pass(),
|
| tree_client.Pass());
|
| }
|
|
|