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

Side by Side Diff: chrome/browser/policy/cloud/mock_cloud_policy_client.cc

Issue 109743002: Move policy code into components/policy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: moar fixes Created 7 years 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
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/browser/policy/cloud/mock_cloud_policy_client.h"
6 #include "chrome/browser/policy/proto/cloud/device_management_backend.pb.h"
7 #include "net/url_request/url_request_context_getter.h"
8
9 namespace em = enterprise_management;
10
11 namespace policy {
12
13 MockCloudPolicyClient::MockCloudPolicyClient()
14 : CloudPolicyClient(std::string(),
15 std::string(),
16 USER_AFFILIATION_NONE,
17 NULL,
18 NULL,
19 NULL) {}
20
21 MockCloudPolicyClient::~MockCloudPolicyClient() {}
22
23 void MockCloudPolicyClient::SetDMToken(const std::string& token) {
24 dm_token_ = token;
25 }
26
27 void MockCloudPolicyClient::SetPolicy(const PolicyNamespaceKey& policy_ns_key,
28 const em::PolicyFetchResponse& policy) {
29 em::PolicyFetchResponse*& response = responses_[policy_ns_key];
30 delete response;
31 response = new enterprise_management::PolicyFetchResponse(policy);
32 }
33
34 void MockCloudPolicyClient::SetStatus(DeviceManagementStatus status) {
35 status_ = status;
36 }
37
38 MockCloudPolicyClientObserver::MockCloudPolicyClientObserver() {}
39
40 MockCloudPolicyClientObserver::~MockCloudPolicyClientObserver() {}
41
42 } // namespace policy
OLDNEW
« no previous file with comments | « chrome/browser/policy/cloud/mock_cloud_policy_client.h ('k') | chrome/browser/policy/cloud/mock_cloud_policy_store.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698