| Index: components/mus/ws/connection_manager.cc
|
| diff --git a/components/mus/ws/connection_manager.cc b/components/mus/ws/connection_manager.cc
|
| index 49382540755558d9600064dc4344f02128d29f98..3c8bea5c1aa646153857d713339b7c5d663dc5d5 100644
|
| --- a/components/mus/ws/connection_manager.cc
|
| +++ b/components/mus/ws/connection_manager.cc
|
| @@ -58,8 +58,10 @@ void ConnectionManager::AddHost(WindowTreeHostConnection* host_connection) {
|
| delegate_->OnFirstRootConnectionCreated();
|
| }
|
|
|
| -ServerWindow* ConnectionManager::CreateServerWindow(const WindowId& id) {
|
| - ServerWindow* window = new ServerWindow(this, id);
|
| +ServerWindow* ConnectionManager::CreateServerWindow(
|
| + const WindowId& id,
|
| + const std::map<std::string, std::vector<uint8_t>>& properties) {
|
| + ServerWindow* window = new ServerWindow(this, id, properties);
|
| window->AddObserver(this);
|
| return window;
|
| }
|
|
|