| 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/shell/public/cpp/connection.h" | 11 #include "services/shell/public/cpp/connection.h" |
| 12 #include "services/shell/public/cpp/connector.h" | 12 #include "services/shell/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() : connector_(nullptr), screen_locked_(false) {} | 27 Session::Session() : connector_(nullptr), screen_locked_(false) {} |
| 28 Session::~Session() {} | 28 Session::~Session() {} |
| 29 | 29 |
| 30 void Session::Initialize(shell::Connector* connector, | 30 void Session::OnStart(shell::Connector* connector, |
| 31 const shell::Identity& identity, | 31 const shell::Identity& identity, |
| 32 uint32_t id) { | 32 uint32_t id) { |
| 33 connector_ = connector; | 33 connector_ = connector; |
| 34 StartAppDriver(); | 34 StartAppDriver(); |
| 35 StartWindowManager(); | 35 StartWindowManager(); |
| 36 StartSystemUI(); | 36 StartSystemUI(); |
| 37 StartQuickLaunch(); | 37 StartQuickLaunch(); |
| 38 } | 38 } |
| 39 | 39 |
| 40 bool Session::AcceptConnection(shell::Connection* connection) { | 40 bool Session::OnConnect(shell::Connection* connection) { |
| 41 connection->AddInterface<mojom::Session>(this); | 41 connection->AddInterface<mojom::Session>(this); |
| 42 return true; | 42 return true; |
| 43 } | 43 } |
| 44 | 44 |
| 45 void Session::Logout() { | 45 void Session::Logout() { |
| 46 // TODO(beng): Notify connected listeners that login is happening, potentially | 46 // TODO(beng): Notify connected listeners that login is happening, potentially |
| 47 // give them the option to stop it. | 47 // give them the option to stop it. |
| 48 mash::login::mojom::LoginPtr login; | 48 mash::login::mojom::LoginPtr login; |
| 49 connector_->ConnectToInterface("mojo:login", &login); | 49 connector_->ConnectToInterface("mojo:login", &login); |
| 50 login->ShowLoginUI(); | 50 login->ShowLoginUI(); |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 if (connection) { | 139 if (connection) { |
| 140 connection->SetConnectionLostClosure( | 140 connection->SetConnectionLostClosure( |
| 141 base::Bind(&LogAndCallServiceRestartCallback, url, restart_callback)); | 141 base::Bind(&LogAndCallServiceRestartCallback, url, restart_callback)); |
| 142 connection->AddInterface<mojom::Session>(this); | 142 connection->AddInterface<mojom::Session>(this); |
| 143 connections_[url] = std::move(connection); | 143 connections_[url] = std::move(connection); |
| 144 } | 144 } |
| 145 } | 145 } |
| 146 | 146 |
| 147 } // namespace session | 147 } // namespace session |
| 148 } // namespace main | 148 } // namespace main |
| OLD | NEW |