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

Side by Side Diff: components/policy/core/common/cloud/mock_cloud_policy_client.cc

Issue 108563005: Move the cloud policy protobufs into the component. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 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/policy/proto/cloud/device_management_backend.pb.h"
6 #include "components/policy/core/common/cloud/mock_cloud_policy_client.h" 5 #include "components/policy/core/common/cloud/mock_cloud_policy_client.h"
7 #include "net/url_request/url_request_context_getter.h" 6 #include "net/url_request/url_request_context_getter.h"
7 #include "policy/proto/device_management_backend.pb.h"
8 8
9 namespace em = enterprise_management; 9 namespace em = enterprise_management;
10 10
11 namespace policy { 11 namespace policy {
12 12
13 MockCloudPolicyClient::MockCloudPolicyClient() 13 MockCloudPolicyClient::MockCloudPolicyClient()
14 : CloudPolicyClient(std::string(), 14 : CloudPolicyClient(std::string(),
15 std::string(), 15 std::string(),
16 USER_AFFILIATION_NONE, 16 USER_AFFILIATION_NONE,
17 NULL, 17 NULL,
(...skipping 15 matching lines...) Expand all
33 33
34 void MockCloudPolicyClient::SetStatus(DeviceManagementStatus status) { 34 void MockCloudPolicyClient::SetStatus(DeviceManagementStatus status) {
35 status_ = status; 35 status_ = status;
36 } 36 }
37 37
38 MockCloudPolicyClientObserver::MockCloudPolicyClientObserver() {} 38 MockCloudPolicyClientObserver::MockCloudPolicyClientObserver() {}
39 39
40 MockCloudPolicyClientObserver::~MockCloudPolicyClientObserver() {} 40 MockCloudPolicyClientObserver::~MockCloudPolicyClientObserver() {}
41 41
42 } // namespace policy 42 } // namespace policy
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698