| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "chrome/browser/chromeos/policy/fake_device_cloud_policy_manager.h" |
| 6 |
| 7 #include "base/callback.h" |
| 8 #include "chrome/browser/chromeos/policy/device_cloud_policy_store_chromeos.h" |
| 9 |
| 10 namespace policy { |
| 11 |
| 12 FakeDeviceCloudPolicyManager::FakeDeviceCloudPolicyManager( |
| 13 scoped_ptr<DeviceCloudPolicyStoreChromeOS> store, |
| 14 const scoped_refptr<base::SequencedTaskRunner>& task_runner) |
| 15 : DeviceCloudPolicyManagerChromeOS(store.Pass(), task_runner, NULL), |
| 16 unregister_result_(true) { |
| 17 } |
| 18 |
| 19 FakeDeviceCloudPolicyManager::~FakeDeviceCloudPolicyManager() { |
| 20 Shutdown(); |
| 21 } |
| 22 |
| 23 void FakeDeviceCloudPolicyManager::Unregister( |
| 24 const UnregisterCallback& callback) { |
| 25 callback.Run(unregister_result_); |
| 26 } |
| 27 |
| 28 void FakeDeviceCloudPolicyManager::Disconnect() { |
| 29 } |
| 30 |
| 31 } // namespace policy |
| OLD | NEW |