| Index: mash/session/session.cc
|
| diff --git a/mash/session/session.cc b/mash/session/session.cc
|
| index d00e7ecbb77679265859d0cba8bd30d236f69acb..d02dabbb1e66a1ed13abcd98f8c4625c4d98c352 100644
|
| --- a/mash/session/session.cc
|
| +++ b/mash/session/session.cc
|
| @@ -24,19 +24,20 @@ void Session::OnStart() {
|
| StartQuickLaunch();
|
|
|
| // Launch a chrome window for dev convience; don't do this in the long term.
|
| - context()->connector()->Connect(content::mojom::kPackagedServicesServiceName);
|
| + context()->connector()->StartService(
|
| + content::mojom::kPackagedServicesServiceName);
|
| }
|
|
|
| void Session::StartWindowManager() {
|
| // TODO(beng): monitor this service for death & bring down the whole system
|
| // if necessary.
|
| - context()->connector()->Connect(common::GetWindowManagerServiceName());
|
| + context()->connector()->StartService(common::GetWindowManagerServiceName());
|
| }
|
|
|
| void Session::StartQuickLaunch() {
|
| // TODO(beng): monitor this service for death & bring down the whole system
|
| // if necessary.
|
| - context()->connector()->Connect(quick_launch::mojom::kServiceName);
|
| + context()->connector()->StartService(quick_launch::mojom::kServiceName);
|
| }
|
|
|
| } // namespace session
|
|
|