| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "chrome/browser/chromeos/policy/fake_device_cloud_policy_manager.h" | 5 #include "chrome/browser/chromeos/policy/fake_device_cloud_policy_manager.h" |
| 6 | 6 |
| 7 #include <utility> |
| 8 |
| 7 #include "base/callback.h" | 9 #include "base/callback.h" |
| 8 #include "chrome/browser/chromeos/policy/device_cloud_policy_store_chromeos.h" | 10 #include "chrome/browser/chromeos/policy/device_cloud_policy_store_chromeos.h" |
| 9 | 11 |
| 10 namespace policy { | 12 namespace policy { |
| 11 | 13 |
| 12 FakeDeviceCloudPolicyManager::FakeDeviceCloudPolicyManager( | 14 FakeDeviceCloudPolicyManager::FakeDeviceCloudPolicyManager( |
| 13 scoped_ptr<DeviceCloudPolicyStoreChromeOS> store, | 15 scoped_ptr<DeviceCloudPolicyStoreChromeOS> store, |
| 14 const scoped_refptr<base::SequencedTaskRunner>& task_runner) | 16 const scoped_refptr<base::SequencedTaskRunner>& task_runner) |
| 15 : DeviceCloudPolicyManagerChromeOS(store.Pass(), task_runner, NULL), | 17 : DeviceCloudPolicyManagerChromeOS(std::move(store), task_runner, NULL), |
| 16 unregister_result_(true) { | 18 unregister_result_(true) {} |
| 17 } | |
| 18 | 19 |
| 19 FakeDeviceCloudPolicyManager::~FakeDeviceCloudPolicyManager() { | 20 FakeDeviceCloudPolicyManager::~FakeDeviceCloudPolicyManager() { |
| 20 Shutdown(); | 21 Shutdown(); |
| 21 } | 22 } |
| 22 | 23 |
| 23 void FakeDeviceCloudPolicyManager::Unregister( | 24 void FakeDeviceCloudPolicyManager::Unregister( |
| 24 const UnregisterCallback& callback) { | 25 const UnregisterCallback& callback) { |
| 25 callback.Run(unregister_result_); | 26 callback.Run(unregister_result_); |
| 26 } | 27 } |
| 27 | 28 |
| 28 void FakeDeviceCloudPolicyManager::Disconnect() { | 29 void FakeDeviceCloudPolicyManager::Disconnect() { |
| 29 } | 30 } |
| 30 | 31 |
| 31 } // namespace policy | 32 } // namespace policy |
| OLD | NEW |