| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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/session/session.h" | 5 #include "mash/session/session.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/message_loop/message_loop.h" | 9 #include "base/message_loop/message_loop.h" |
| 10 #include "mash/login/public/interfaces/login.mojom.h" | 10 #include "mash/login/public/interfaces/login.mojom.h" |
| 11 #include "services/service_manager/public/cpp/connection.h" | 11 #include "services/service_manager/public/cpp/connection.h" |
| 12 #include "services/service_manager/public/cpp/connector.h" | 12 #include "services/service_manager/public/cpp/connector.h" |
| 13 | 13 |
| 14 namespace { | 14 namespace { |
| 15 | 15 |
| 16 void LogAndCallServiceRestartCallback(const std::string& url, | 16 void LogAndCallServiceRestartCallback(const std::string& url, |
| 17 const base::Closure& callback) { | 17 const base::Closure& callback) { |
| 18 LOG(ERROR) << "Restarting service: " << url; | 18 LOG(ERROR) << "Restarting service: " << url; |
| 19 callback.Run(); | 19 callback.Run(); |
| 20 } | 20 } |
| 21 | 21 |
| 22 } // namespace | 22 } // namespace |
| 23 | 23 |
| 24 namespace mash { | 24 namespace mash { |
| 25 namespace session { | 25 namespace session { |
| 26 | 26 |
| 27 Session::Session() : screen_locked_(false) {} | 27 Session::Session() : screen_locked_(false) {} |
| 28 Session::~Session() {} | 28 Session::~Session() {} |
| 29 | 29 |
| 30 void Session::OnStart(const service_manager::Identity& identity) { | 30 void Session::OnStart(const service_manager::ServiceInfo& info) { |
| 31 StartAppDriver(); | 31 StartAppDriver(); |
| 32 StartWindowManager(); | 32 StartWindowManager(); |
| 33 StartQuickLaunch(); | 33 StartQuickLaunch(); |
| 34 // Launch a chrome window for dev convience; don't do this in the long term. | 34 // Launch a chrome window for dev convience; don't do this in the long term. |
| 35 connector()->Connect("service:content_browser"); | 35 connector()->Connect("service:content_browser"); |
| 36 } | 36 } |
| 37 | 37 |
| 38 bool Session::OnConnect(const service_manager::Identity& remote_identity, | 38 bool Session::OnConnect(const service_manager::ServiceInfo& remote_info, |
| 39 service_manager::InterfaceRegistry* registry) { | 39 service_manager::InterfaceRegistry* registry) { |
| 40 registry->AddInterface<mojom::Session>(this); | 40 registry->AddInterface<mojom::Session>(this); |
| 41 return true; | 41 return true; |
| 42 } | 42 } |
| 43 | 43 |
| 44 void Session::Logout() { | 44 void Session::Logout() { |
| 45 // TODO(beng): Notify connected listeners that login is happening, potentially | 45 // TODO(beng): Notify connected listeners that login is happening, potentially |
| 46 // give them the option to stop it. | 46 // give them the option to stop it. |
| 47 mash::login::mojom::LoginPtr login; | 47 mash::login::mojom::LoginPtr login; |
| 48 connector()->ConnectToInterface("service:login", &login); | 48 connector()->ConnectToInterface("service:login", &login); |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 // manager. | 133 // manager. |
| 134 if (connection) { | 134 if (connection) { |
| 135 connection->SetConnectionLostClosure( | 135 connection->SetConnectionLostClosure( |
| 136 base::Bind(&LogAndCallServiceRestartCallback, url, restart_callback)); | 136 base::Bind(&LogAndCallServiceRestartCallback, url, restart_callback)); |
| 137 connections_[url] = std::move(connection); | 137 connections_[url] = std::move(connection); |
| 138 } | 138 } |
| 139 } | 139 } |
| 140 | 140 |
| 141 } // namespace session | 141 } // namespace session |
| 142 } // namespace main | 142 } // namespace main |
| OLD | NEW |