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

Side by Side Diff: chrome/browser/chromeos/policy/device_local_account_policy_store.cc

Issue 14008005: Move proto files back into chrome/browser/policy/proto (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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) 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/chromeos/policy/device_local_account_policy_store.h" 5 #include "chrome/browser/chromeos/policy/device_local_account_policy_store.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/values.h" 8 #include "base/values.h"
9 #include "chrome/browser/policy/cloud/device_management_service.h" 9 #include "chrome/browser/policy/cloud/device_management_service.h"
10 #include "chrome/browser/policy/cloud/proto/device_management_backend.pb.h"
11 #include "chrome/browser/policy/policy_types.h" 10 #include "chrome/browser/policy/policy_types.h"
11 #include "chrome/browser/policy/proto/cloud/device_management_backend.pb.h"
12 #include "chromeos/dbus/power_policy_controller.h" 12 #include "chromeos/dbus/power_policy_controller.h"
13 #include "chromeos/dbus/session_manager_client.h" 13 #include "chromeos/dbus/session_manager_client.h"
14 #include "policy/policy_constants.h" 14 #include "policy/policy_constants.h"
15 #include "policy/proto/cloud_policy.pb.h" 15 #include "policy/proto/cloud_policy.pb.h"
16 16
17 namespace em = enterprise_management; 17 namespace em = enterprise_management;
18 18
19 namespace policy { 19 namespace policy {
20 20
21 DeviceLocalAccountPolicyStore::DeviceLocalAccountPolicyStore( 21 DeviceLocalAccountPolicyStore::DeviceLocalAccountPolicyStore(
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 validator->ValidateAgainstCurrentPolicy( 173 validator->ValidateAgainstCurrentPolicy(
174 policy(), 174 policy(),
175 CloudPolicyValidatorBase::TIMESTAMP_REQUIRED, 175 CloudPolicyValidatorBase::TIMESTAMP_REQUIRED,
176 CloudPolicyValidatorBase::DM_TOKEN_REQUIRED); 176 CloudPolicyValidatorBase::DM_TOKEN_REQUIRED);
177 validator->ValidatePayload(); 177 validator->ValidatePayload();
178 validator->ValidateSignature(*key->public_key(), false); 178 validator->ValidateSignature(*key->public_key(), false);
179 validator.release()->StartValidation(callback); 179 validator.release()->StartValidation(callback);
180 } 180 }
181 181
182 } // namespace policy 182 } // namespace policy
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698