Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "chromeos/dbus/fake_session_manager_client.h" | 5 #include "chromeos/dbus/fake_session_manager_client.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/location.h" | 8 #include "base/location.h" |
| 9 #include "base/message_loop/message_loop.h" | 9 #include "base/message_loop/message_loop.h" |
| 10 #include "base/strings/string_util.h" | 10 #include "base/strings/string_util.h" |
| (...skipping 28 matching lines...) Expand all Loading... | |
| 39 return observers_.HasObserver(observer); | 39 return observers_.HasObserver(observer); |
| 40 } | 40 } |
| 41 | 41 |
| 42 void FakeSessionManagerClient::EmitLoginPromptVisible() { | 42 void FakeSessionManagerClient::EmitLoginPromptVisible() { |
| 43 } | 43 } |
| 44 | 44 |
| 45 void FakeSessionManagerClient::RestartJob(int pid, | 45 void FakeSessionManagerClient::RestartJob(int pid, |
| 46 const std::string& command_line) { | 46 const std::string& command_line) { |
| 47 } | 47 } |
| 48 | 48 |
| 49 void FakeSessionManagerClient::StartSession(const std::string& user_email) { | 49 void FakeSessionManagerClient::StartSession( |
| 50 const std::string& user_email, | |
| 51 const StartSessionCallback& callback) { | |
| 50 DCHECK_EQ(0UL, user_sessions_.count(user_email)); | 52 DCHECK_EQ(0UL, user_sessions_.count(user_email)); |
| 51 std::string user_id_hash = | 53 std::string user_id_hash = |
| 52 CryptohomeClient::GetStubSanitizedUsername(user_email); | 54 CryptohomeClient::GetStubSanitizedUsername(user_email); |
| 53 user_sessions_[user_email] = user_id_hash; | 55 user_sessions_[user_email] = user_id_hash; |
| 56 base::MessageLoop* loop = base::MessageLoop::current(); | |
| 57 if (loop) | |
|
Nikita (slow)
2014/04/18 05:22:59
nit: Add comment why such check is needed.
Roman Sorokin (ftl)
2014/04/22 08:28:47
Done.
| |
| 58 loop->PostTask(FROM_HERE, base::Bind(callback, true)); | |
| 59 else | |
| 60 callback.Run(true); | |
| 54 } | 61 } |
| 55 | 62 |
| 56 void FakeSessionManagerClient::StopSession() { | 63 void FakeSessionManagerClient::StopSession() { |
| 57 } | 64 } |
| 58 | 65 |
| 59 void FakeSessionManagerClient::StartDeviceWipe() { | 66 void FakeSessionManagerClient::StartDeviceWipe() { |
| 60 start_device_wipe_call_count_++; | 67 start_device_wipe_call_count_++; |
| 61 } | 68 } |
| 62 | 69 |
| 63 void FakeSessionManagerClient::RequestLockScreen() { | 70 void FakeSessionManagerClient::RequestLockScreen() { |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 166 const std::string& account_id, | 173 const std::string& account_id, |
| 167 const std::string& policy_blob) { | 174 const std::string& policy_blob) { |
| 168 device_local_account_policy_[account_id] = policy_blob; | 175 device_local_account_policy_[account_id] = policy_blob; |
| 169 } | 176 } |
| 170 | 177 |
| 171 void FakeSessionManagerClient::OnPropertyChangeComplete(bool success) { | 178 void FakeSessionManagerClient::OnPropertyChangeComplete(bool success) { |
| 172 FOR_EACH_OBSERVER(Observer, observers_, PropertyChangeComplete(success)); | 179 FOR_EACH_OBSERVER(Observer, observers_, PropertyChangeComplete(success)); |
| 173 } | 180 } |
| 174 | 181 |
| 175 } // namespace chromeos | 182 } // namespace chromeos |
| OLD | NEW |