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" |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 | 54 |
55 void Session::SwitchUser() { | 55 void Session::SwitchUser() { |
56 mash::login::mojom::LoginPtr login; | 56 mash::login::mojom::LoginPtr login; |
57 connector_->ConnectToInterface("mojo:login", &login); | 57 connector_->ConnectToInterface("mojo:login", &login); |
58 login->SwitchUser(); | 58 login->SwitchUser(); |
59 } | 59 } |
60 | 60 |
61 void Session::AddScreenlockStateListener( | 61 void Session::AddScreenlockStateListener( |
62 mojom::ScreenlockStateListenerPtr listener) { | 62 mojom::ScreenlockStateListenerPtr listener) { |
63 listener->ScreenlockStateChanged(screen_locked_); | 63 listener->ScreenlockStateChanged(screen_locked_); |
64 screenlock_listeners_.AddInterfacePtr(std::move(listener)); | 64 screenlock_listeners_.AddPtr(std::move(listener)); |
65 } | 65 } |
66 | 66 |
67 void Session::LockScreen() { | 67 void Session::LockScreen() { |
68 if (screen_locked_) | 68 if (screen_locked_) |
69 return; | 69 return; |
70 screen_locked_ = true; | 70 screen_locked_ = true; |
71 screenlock_listeners_.ForAllPtrs( | 71 screenlock_listeners_.ForAllPtrs( |
72 [](mojom::ScreenlockStateListener* listener) { | 72 [](mojom::ScreenlockStateListener* listener) { |
73 listener->ScreenlockStateChanged(true); | 73 listener->ScreenlockStateChanged(true); |
74 }); | 74 }); |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 if (connection) { | 140 if (connection) { |
141 connection->SetConnectionLostClosure( | 141 connection->SetConnectionLostClosure( |
142 base::Bind(&LogAndCallServiceRestartCallback, url, restart_callback)); | 142 base::Bind(&LogAndCallServiceRestartCallback, url, restart_callback)); |
143 connection->AddInterface<mojom::Session>(this); | 143 connection->AddInterface<mojom::Session>(this); |
144 connections_[url] = std::move(connection); | 144 connections_[url] = std::move(connection); |
145 } | 145 } |
146 } | 146 } |
147 | 147 |
148 } // namespace session | 148 } // namespace session |
149 } // namespace main | 149 } // namespace main |
OLD | NEW |