Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(724)

Side by Side Diff: chrome/browser/policy/mock_device_management_service.h

Issue 7810025: Pass user_affiliation request parameter on user cloud policy requests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix Mac build breakage. Created 9 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 21 matching lines...) Expand all
32 const em::DeviceRegisterRequest& request, 32 const em::DeviceRegisterRequest& request,
33 DeviceRegisterResponseDelegate* delegate) OVERRIDE; 33 DeviceRegisterResponseDelegate* delegate) OVERRIDE;
34 virtual void ProcessUnregisterRequest( 34 virtual void ProcessUnregisterRequest(
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 const em::DevicePolicyRequest& request, 43 const em::DevicePolicyRequest& request,
43 DevicePolicyResponseDelegate* delegate) OVERRIDE; 44 DevicePolicyResponseDelegate* delegate) OVERRIDE;
44 45
45 private: 46 private:
46 DeviceManagementBackend* backend_; // weak 47 DeviceManagementBackend* backend_; // weak
47 DISALLOW_COPY_AND_ASSIGN(ProxyDeviceManagementBackend); 48 DISALLOW_COPY_AND_ASSIGN(ProxyDeviceManagementBackend);
48 }; 49 };
49 50
50 class MockDeviceManagementService : public DeviceManagementService { 51 class MockDeviceManagementService : public DeviceManagementService {
51 public: 52 public:
(...skipping 27 matching lines...) Expand all
79 80
80 // Use this to make StartJob send a faked response to the job immediately. 81 // Use this to make StartJob send a faked response to the job immediately.
81 ACTION_P4(MockDeviceManagementServiceRespondToJob, status, response_code, 82 ACTION_P4(MockDeviceManagementServiceRespondToJob, status, response_code,
82 cookies, data) { 83 cookies, data) {
83 arg0->HandleResponse(status, response_code, cookies, data); 84 arg0->HandleResponse(status, response_code, cookies, data);
84 } 85 }
85 86
86 } // namespace policy 87 } // namespace policy
87 88
88 #endif // CHROME_BROWSER_POLICY_MOCK_DEVICE_MANAGEMENT_SERVICE_H_ 89 #endif // CHROME_BROWSER_POLICY_MOCK_DEVICE_MANAGEMENT_SERVICE_H_
OLDNEW
« no previous file with comments | « chrome/browser/policy/mock_device_management_backend.h ('k') | chrome/browser/policy/mock_device_management_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698