| 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 const std::string& policy_blob, | 110 const std::string& policy_blob, |
| 111 const StorePolicyCallback& callback) { | 111 const StorePolicyCallback& callback) { |
| 112 device_policy_ = policy_blob; | 112 device_policy_ = policy_blob; |
| 113 base::MessageLoop::current()->PostTask(FROM_HERE, base::Bind(callback, true)); | 113 base::MessageLoop::current()->PostTask(FROM_HERE, base::Bind(callback, true)); |
| 114 FOR_EACH_OBSERVER(Observer, observers_, PropertyChangeComplete(true)); | 114 FOR_EACH_OBSERVER(Observer, observers_, PropertyChangeComplete(true)); |
| 115 } | 115 } |
| 116 | 116 |
| 117 void FakeSessionManagerClient::StorePolicyForUser( | 117 void FakeSessionManagerClient::StorePolicyForUser( |
| 118 const std::string& username, | 118 const std::string& username, |
| 119 const std::string& policy_blob, | 119 const std::string& policy_blob, |
| 120 const std::string& policy_key, |
| 120 const StorePolicyCallback& callback) { | 121 const StorePolicyCallback& callback) { |
| 121 user_policies_[username] = policy_blob; | 122 user_policies_[username] = policy_blob; |
| 122 base::MessageLoop::current()->PostTask(FROM_HERE, base::Bind(callback, true)); | 123 base::MessageLoop::current()->PostTask(FROM_HERE, base::Bind(callback, true)); |
| 123 } | 124 } |
| 124 | 125 |
| 125 void FakeSessionManagerClient::StoreDeviceLocalAccountPolicy( | 126 void FakeSessionManagerClient::StoreDeviceLocalAccountPolicy( |
| 126 const std::string& account_id, | 127 const std::string& account_id, |
| 127 const std::string& policy_blob, | 128 const std::string& policy_blob, |
| 128 const StorePolicyCallback& callback) { | 129 const StorePolicyCallback& callback) { |
| 129 device_local_account_policy_[account_id] = policy_blob; | 130 device_local_account_policy_[account_id] = policy_blob; |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 const std::string& account_id, | 169 const std::string& account_id, |
| 169 const std::string& policy_blob) { | 170 const std::string& policy_blob) { |
| 170 device_local_account_policy_[account_id] = policy_blob; | 171 device_local_account_policy_[account_id] = policy_blob; |
| 171 } | 172 } |
| 172 | 173 |
| 173 void FakeSessionManagerClient::OnPropertyChangeComplete(bool success) { | 174 void FakeSessionManagerClient::OnPropertyChangeComplete(bool success) { |
| 174 FOR_EACH_OBSERVER(Observer, observers_, PropertyChangeComplete(success)); | 175 FOR_EACH_OBSERVER(Observer, observers_, PropertyChangeComplete(success)); |
| 175 } | 176 } |
| 176 | 177 |
| 177 } // namespace chromeos | 178 } // namespace chromeos |
| OLD | NEW |