OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #ifndef CHROME_BROWSER_POLICY_MOCK_DEVICE_MANAGEMENT_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_POLICY_MOCK_DEVICE_MANAGEMENT_SERVICE_H_ |
6 #define CHROME_BROWSER_POLICY_MOCK_DEVICE_MANAGEMENT_SERVICE_H_ | 6 #define CHROME_BROWSER_POLICY_MOCK_DEVICE_MANAGEMENT_SERVICE_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 24 matching lines...) Expand all Loading... |
35 const std::string& device_management_token, | 35 const std::string& device_management_token, |
36 const std::string& device_id, | 36 const std::string& device_id, |
37 const em::DeviceUnregisterRequest& request, | 37 const em::DeviceUnregisterRequest& request, |
38 DeviceUnregisterResponseDelegate* delegate) OVERRIDE; | 38 DeviceUnregisterResponseDelegate* delegate) OVERRIDE; |
39 virtual void ProcessPolicyRequest( | 39 virtual void ProcessPolicyRequest( |
40 const std::string& device_management_token, | 40 const std::string& device_management_token, |
41 const std::string& device_id, | 41 const std::string& device_id, |
42 CloudPolicyDataStore::UserAffiliation affiliation, | 42 CloudPolicyDataStore::UserAffiliation affiliation, |
43 const em::DevicePolicyRequest& request, | 43 const em::DevicePolicyRequest& request, |
44 DevicePolicyResponseDelegate* delegate) OVERRIDE; | 44 DevicePolicyResponseDelegate* delegate) OVERRIDE; |
| 45 virtual void ProcessAutoEnrollmentRequest( |
| 46 const std::string& device_id, |
| 47 const em::DeviceAutoEnrollmentRequest& request, |
| 48 DeviceAutoEnrollmentResponseDelegate* delegate) OVERRIDE; |
45 | 49 |
46 private: | 50 private: |
47 DeviceManagementBackend* backend_; // weak | 51 DeviceManagementBackend* backend_; // weak |
48 DISALLOW_COPY_AND_ASSIGN(ProxyDeviceManagementBackend); | 52 DISALLOW_COPY_AND_ASSIGN(ProxyDeviceManagementBackend); |
49 }; | 53 }; |
50 | 54 |
51 class MockDeviceManagementService : public DeviceManagementService { | 55 class MockDeviceManagementService : public DeviceManagementService { |
52 public: | 56 public: |
53 MockDeviceManagementService(); | 57 MockDeviceManagementService(); |
54 virtual ~MockDeviceManagementService(); | 58 virtual ~MockDeviceManagementService(); |
(...skipping 25 matching lines...) Expand all Loading... |
80 | 84 |
81 // Use this to make StartJob send a faked response to the job immediately. | 85 // Use this to make StartJob send a faked response to the job immediately. |
82 ACTION_P4(MockDeviceManagementServiceRespondToJob, status, response_code, | 86 ACTION_P4(MockDeviceManagementServiceRespondToJob, status, response_code, |
83 cookies, data) { | 87 cookies, data) { |
84 arg0->HandleResponse(status, response_code, cookies, data); | 88 arg0->HandleResponse(status, response_code, cookies, data); |
85 } | 89 } |
86 | 90 |
87 } // namespace policy | 91 } // namespace policy |
88 | 92 |
89 #endif // CHROME_BROWSER_POLICY_MOCK_DEVICE_MANAGEMENT_SERVICE_H_ | 93 #endif // CHROME_BROWSER_POLICY_MOCK_DEVICE_MANAGEMENT_SERVICE_H_ |
OLD | NEW |