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_initializer.h" | 5 #include "chrome/browser/chromeos/policy/fake_device_cloud_policy_initializer.h" |
6 | 6 |
7 #include "base/memory/ptr_util.h" | 7 #include "base/memory/ptr_util.h" |
8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
9 #include "base/sequenced_task_runner.h" | 9 #include "base/sequenced_task_runner.h" |
10 #include "chromeos/attestation/mock_attestation_flow.h" | 10 #include "chromeos/attestation/mock_attestation_flow.h" |
(...skipping 11 matching lines...) Expand all Loading... |
22 nullptr, // state_keys_broker | 22 nullptr, // state_keys_broker |
23 nullptr, // device_store | 23 nullptr, // device_store |
24 nullptr, // manager | 24 nullptr, // manager |
25 nullptr, // async_caller | 25 nullptr, // async_caller |
26 base::MakeUnique<chromeos::attestation::MockAttestationFlow>(), | 26 base::MakeUnique<chromeos::attestation::MockAttestationFlow>(), |
27 nullptr), // statistics_provider | 27 nullptr), // statistics_provider |
28 was_start_enrollment_called_(false), | 28 was_start_enrollment_called_(false), |
29 enrollment_status_( | 29 enrollment_status_( |
30 EnrollmentStatus::ForStatus(EnrollmentStatus::SUCCESS)) {} | 30 EnrollmentStatus::ForStatus(EnrollmentStatus::SUCCESS)) {} |
31 | 31 |
| 32 FakeDeviceCloudPolicyInitializer::~FakeDeviceCloudPolicyInitializer() = default; |
| 33 |
32 void FakeDeviceCloudPolicyInitializer::Init() { | 34 void FakeDeviceCloudPolicyInitializer::Init() { |
33 } | 35 } |
34 | 36 |
35 void FakeDeviceCloudPolicyInitializer::Shutdown() { | 37 void FakeDeviceCloudPolicyInitializer::Shutdown() { |
36 } | 38 } |
37 | 39 |
38 void FakeDeviceCloudPolicyInitializer::StartEnrollment( | 40 void FakeDeviceCloudPolicyInitializer::PrepareEnrollment( |
39 DeviceManagementService* device_management_service, | 41 DeviceManagementService* device_management_service, |
40 chromeos::ActiveDirectoryJoinDelegate* ad_join_delegate, | 42 chromeos::ActiveDirectoryJoinDelegate* ad_join_delegate, |
41 const EnrollmentConfig& enrollment_config, | 43 const EnrollmentConfig& enrollment_config, |
42 const std::string& auth_token, | 44 const std::string& auth_token, |
43 const EnrollmentCallback& enrollment_callback) { | 45 const EnrollmentCallback& enrollment_callback) { |
| 46 enrollment_callback_ = enrollment_callback; |
| 47 } |
| 48 |
| 49 void FakeDeviceCloudPolicyInitializer::StartEnrollment() { |
| 50 if (enrollment_callback_) |
| 51 enrollment_callback_.Run(enrollment_status_); |
44 was_start_enrollment_called_ = true; | 52 was_start_enrollment_called_ = true; |
45 enrollment_callback.Run(enrollment_status_); | |
46 } | 53 } |
47 | 54 |
48 } // namespace policy | 55 } // namespace policy |
OLD | NEW |