| 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 20 matching lines...) Expand all Loading... |
| 31 void FakeDeviceCloudPolicyInitializer::Init() { | 31 void FakeDeviceCloudPolicyInitializer::Init() { |
| 32 } | 32 } |
| 33 | 33 |
| 34 void FakeDeviceCloudPolicyInitializer::Shutdown() { | 34 void FakeDeviceCloudPolicyInitializer::Shutdown() { |
| 35 } | 35 } |
| 36 | 36 |
| 37 void FakeDeviceCloudPolicyInitializer::StartEnrollment( | 37 void FakeDeviceCloudPolicyInitializer::StartEnrollment( |
| 38 DeviceManagementService* device_management_service, | 38 DeviceManagementService* device_management_service, |
| 39 const EnrollmentConfig& enrollment_config, | 39 const EnrollmentConfig& enrollment_config, |
| 40 const std::string& auth_token, | 40 const std::string& auth_token, |
| 41 const AllowedDeviceModes& allowed_modes, | |
| 42 const EnrollmentCallback& enrollment_callback) { | 41 const EnrollmentCallback& enrollment_callback) { |
| 43 was_start_enrollment_called_ = true; | 42 was_start_enrollment_called_ = true; |
| 44 enrollment_callback.Run(enrollment_status_); | 43 enrollment_callback.Run(enrollment_status_); |
| 45 } | 44 } |
| 46 | 45 |
| 47 } // namespace policy | 46 } // namespace policy |
| OLD | NEW |