OLD | NEW |
(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_handler.h
" |
| 6 |
| 7 #include "components/policy/core/common/schema.h" |
| 8 #include "policy/policy_constants.h" |
| 9 |
| 10 namespace chromeos { |
| 11 |
| 12 KeyPermissionsPolicyHandler::KeyPermissionsPolicyHandler( |
| 13 const policy::Schema& chrome_schema) |
| 14 : policy::SchemaValidatingPolicyHandler( |
| 15 policy::key::kKeyPermissions, |
| 16 chrome_schema.GetKnownProperty(policy::key::kKeyPermissions), |
| 17 policy::SCHEMA_ALLOW_UNKNOWN) { |
| 18 } |
| 19 |
| 20 void KeyPermissionsPolicyHandler::ApplyPolicySettings( |
| 21 const policy::PolicyMap& /* policies */, |
| 22 PrefValueMap* /* prefs */) { |
| 23 } |
| 24 |
| 25 } // namespace chromeos |
OLD | NEW |