OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_DEVICE_MANAGEMENT_BACKEND_MOCK_H_ | 5 #ifndef CHROME_BROWSER_POLICY_DEVICE_MANAGEMENT_BACKEND_MOCK_H_ |
6 #define CHROME_BROWSER_POLICY_DEVICE_MANAGEMENT_BACKEND_MOCK_H_ | 6 #define CHROME_BROWSER_POLICY_DEVICE_MANAGEMENT_BACKEND_MOCK_H_ |
7 | 7 |
| 8 #include "chrome/browser/policy/device_management_backend.h" |
8 #include "testing/gmock/include/gmock/gmock.h" | 9 #include "testing/gmock/include/gmock/gmock.h" |
9 | 10 |
10 namespace policy { | 11 namespace policy { |
11 | 12 |
12 // Mock classes for the various DeviceManagementBackend delegates that allow to | 13 // Mock classes for the various DeviceManagementBackend delegates that allow to |
13 // capture callbacks using gmock. | 14 // capture callbacks using gmock. |
14 class DeviceRegisterResponseDelegateMock | 15 class DeviceRegisterResponseDelegateMock |
15 : public DeviceManagementBackend::DeviceRegisterResponseDelegate { | 16 : public DeviceManagementBackend::DeviceRegisterResponseDelegate { |
16 public: | 17 public: |
17 MOCK_METHOD1(HandleRegisterResponse, void(const em::DeviceRegisterResponse&)); | 18 MOCK_METHOD1(HandleRegisterResponse, void(const em::DeviceRegisterResponse&)); |
(...skipping 11 matching lines...) Expand all Loading... |
29 class DevicePolicyResponseDelegateMock | 30 class DevicePolicyResponseDelegateMock |
30 : public DeviceManagementBackend::DevicePolicyResponseDelegate { | 31 : public DeviceManagementBackend::DevicePolicyResponseDelegate { |
31 public: | 32 public: |
32 MOCK_METHOD1(HandlePolicyResponse, void(const em::DevicePolicyResponse&)); | 33 MOCK_METHOD1(HandlePolicyResponse, void(const em::DevicePolicyResponse&)); |
33 MOCK_METHOD1(OnError, void(DeviceManagementBackend::ErrorCode error)); | 34 MOCK_METHOD1(OnError, void(DeviceManagementBackend::ErrorCode error)); |
34 }; | 35 }; |
35 | 36 |
36 } // namespace policy | 37 } // namespace policy |
37 | 38 |
38 #endif // CHROME_BROWSER_POLICY_DEVICE_MANAGEMENT_BACKEND_MOCK_H_ | 39 #endif // CHROME_BROWSER_POLICY_DEVICE_MANAGEMENT_BACKEND_MOCK_H_ |
OLD | NEW |