| Index: services/ui/ws/window_manager_client_unittest.cc
|
| diff --git a/services/ui/ws/window_manager_client_unittest.cc b/services/ui/ws/window_manager_client_unittest.cc
|
| index 075b70b25f738c20080ccdabcdaa045004803972..02a59a7096c0b0adeb056c7eb4e7079a2043c313 100644
|
| --- a/services/ui/ws/window_manager_client_unittest.cc
|
| +++ b/services/ui/ws/window_manager_client_unittest.cc
|
| @@ -711,7 +711,8 @@ class EstablishConnectionViaFactoryDelegate : public TestWindowManagerDelegate {
|
| TEST_F(WindowServerTest, EstablishConnectionViaFactory) {
|
| EstablishConnectionViaFactoryDelegate delegate(window_manager());
|
| set_window_manager_delegate(&delegate);
|
| - aura::WindowTreeClient second_client(connector(), this);
|
| + aura::WindowTreeClient second_client(connector(), this, nullptr, nullptr,
|
| + nullptr, false);
|
| second_client.ConnectViaWindowTreeFactory();
|
| aura::WindowTreeHostMus window_tree_host_in_second_client(&second_client);
|
| window_tree_host_in_second_client.InitHost();
|
| @@ -739,7 +740,8 @@ TEST_F(WindowServerTest, OnWindowHierarchyChangedIncludesTransientParent) {
|
| // of the first window and then add it.
|
| EstablishConnectionViaFactoryDelegate delegate(window_manager());
|
| set_window_manager_delegate(&delegate);
|
| - aura::WindowTreeClient second_client(connector(), this);
|
| + aura::WindowTreeClient second_client(connector(), this, nullptr, nullptr,
|
| + nullptr, false);
|
| second_client.ConnectViaWindowTreeFactory();
|
| aura::WindowTreeHostMus window_tree_host_in_second_client(&second_client);
|
| window_tree_host_in_second_client.InitHost();
|
|
|