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

Side by Side Diff: chrome/browser/chromeos/platform_keys/key_permissions_policy_handlers.cc

Issue 1150373002: platformKeys: Add policy and corporate key tagging. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@key_perm
Patch Set: Rebased. Created 5 years, 6 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
OLDNEW
(Empty)
1 // Copyright 2015 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/chromeos/platform_keys/key_permissions_policy_handlers. h"
6
7 #include "policy/policy_constants.h"
8
9 namespace chromeos {
10
11 KeyPermissionsPolicyHandler::KeyPermissionsPolicyHandler(
12 const policy::Schema& chrome_schema)
13 : policy::SchemaValidatingPolicyHandler(
14 policy::key::kKeyPermissions,
15 chrome_schema.GetKnownProperty(policy::key::kKeyPermissions),
bartfab (slow) 2015/06/15 17:28:15 Nit: #include "components/policy/core/common/schem
pneubeck (no reviews) 2015/06/17 08:59:56 Done.
16 policy::SCHEMA_ALLOW_UNKNOWN) {
17 }
18
19 KeyPermissionsPolicyHandler::~KeyPermissionsPolicyHandler() {
20 }
21
22 void KeyPermissionsPolicyHandler::ApplyPolicySettings(
23 const policy::PolicyMap& /* policies */,
24 PrefValueMap* /* prefs */) {
25 }
bartfab (slow) 2015/06/15 17:28:15 We normally use a pref as the vehicle to move poli
pneubeck (no reviews) 2015/06/17 08:59:56 Opinions on this seem to deviate as Mattias agreed
26
27 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698