| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "mash/init/init.h" | 5 #include "mash/init/init.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 #include "base/guid.h" | 9 #include "base/guid.h" |
| 10 #include "mash/login/public/interfaces/login.mojom.h" | 10 #include "mash/login/public/interfaces/login.mojom.h" |
| 11 #include "services/shell/public/cpp/connection.h" | 11 #include "services/service_manager/public/cpp/connection.h" |
| 12 #include "services/shell/public/cpp/connector.h" | 12 #include "services/service_manager/public/cpp/connector.h" |
| 13 | 13 |
| 14 namespace mash { | 14 namespace mash { |
| 15 namespace init { | 15 namespace init { |
| 16 | 16 |
| 17 Init::Init() {} | 17 Init::Init() {} |
| 18 Init::~Init() {} | 18 Init::~Init() {} |
| 19 | 19 |
| 20 void Init::OnStart(const shell::Identity& identity) { | 20 void Init::OnStart(const shell::Identity& identity) { |
| 21 connector()->Connect("service:ui"); | 21 connector()->Connect("service:ui"); |
| 22 StartTracing(); | 22 StartTracing(); |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 | 64 |
| 65 void Init::StartLogin() { | 65 void Init::StartLogin() { |
| 66 login_connection_ = connector()->Connect("service:login"); | 66 login_connection_ = connector()->Connect("service:login"); |
| 67 mash::login::mojom::LoginPtr login; | 67 mash::login::mojom::LoginPtr login; |
| 68 login_connection_->GetInterface(&login); | 68 login_connection_->GetInterface(&login); |
| 69 login->ShowLoginUI(); | 69 login->ShowLoginUI(); |
| 70 } | 70 } |
| 71 | 71 |
| 72 } // namespace init | 72 } // namespace init |
| 73 } // namespace main | 73 } // namespace main |
| OLD | NEW |